summaryrefslogtreecommitdiffstats
path: root/eprintf.h
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2018-04-21 21:11:32 +0200
committerTomasz Kramkowski <tk@the-tk.com>2018-04-21 21:11:32 +0200
commitb0f260efed64e9db6b07bc36250971fc21a0f6db (patch)
treecb928888983b0f7170efc5aefc190650ff54aaef /eprintf.h
parent7a802c4ff4c715f50825d833fa44f2ad1a5993f4 (diff)
downloadeprintf-b0f260efed64e9db6b07bc36250971fc21a0f6db.tar.gz
eprintf-b0f260efed64e9db6b07bc36250971fc21a0f6db.tar.xz
eprintf-b0f260efed64e9db6b07bc36250971fc21a0f6db.zip
add deprintf functionHEADmaster
Diffstat (limited to 'eprintf.h')
-rw-r--r--eprintf.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/eprintf.h b/eprintf.h
index 0bd662b..1afc4a6 100644
--- a/eprintf.h
+++ b/eprintf.h
@@ -7,10 +7,13 @@ noreturn void eprintf(const char *fmt, ...)
__attribute__((format(printf, 1, 2)));
void weprintf(const char *fmt, ...)
__attribute__((format(printf, 1, 2)));
+void deprintf(const char *fmt, ...)
+ __attribute__((format(printf, 1, 2)));
char *estrdup(const char *str);
void *emalloc(size_t size);
void *ecalloc(size_t nmemb, size_t size);
void *erealloc(void *p, size_t size);
void setprogname(const char *name);
+void setdebug(int d);
#endif // !EPRINTF_EPRINTF_H