summaryrefslogtreecommitdiffstats
path: root/tmpbuffer.h
diff options
context:
space:
mode:
authorSimon Rettberg2014-03-15 01:49:50 +0100
committerSimon Rettberg2014-03-15 01:49:50 +0100
commitbedd2e7ccb1595c23e159eaa952ae1b0b5a3d2ad (patch)
treec7d1995a09f6ed0c4e6873252e957d72f5d07d07 /tmpbuffer.h
downloadldadp-bedd2e7ccb1595c23e159eaa952ae1b0b5a3d2ad.tar.gz
ldadp-bedd2e7ccb1595c23e159eaa952ae1b0b5a3d2ad.tar.xz
ldadp-bedd2e7ccb1595c23e159eaa952ae1b0b5a3d2ad.zip
Lean and mean initial commit
Not much functionality yet
Diffstat (limited to 'tmpbuffer.h')
-rw-r--r--tmpbuffer.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/tmpbuffer.h b/tmpbuffer.h
new file mode 100644
index 0000000..d923e29
--- /dev/null
+++ b/tmpbuffer.h
@@ -0,0 +1,17 @@
+#ifndef _TMPBUFFER_H_
+#define _TMPBUFFER_H_
+
+#include <stdarg.h>
+
+#define TMPLEN 512
+
+struct string;
+
+char* tmpbuffer_get();
+
+void tmpbuffer_format(struct string *dest, const char *format, ...);
+
+void tmpbuffer_formatva(struct string *dest, const char *format, va_list args);
+
+#endif
+