summaryrefslogtreecommitdiffstats
path: root/lib/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/string.h')
-rw-r--r--lib/string.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/string.h b/lib/string.h
new file mode 100644
index 0000000..9f72cb7
--- /dev/null
+++ b/lib/string.h
@@ -0,0 +1,17 @@
+/*
+ * BIRD Library -- String Functions
+ *
+ * (c) 1998 Martin Mares <mj@ucw.cz>
+ *
+ * Can be freely distributed and used under the terms of the GNU GPL.
+ */
+
+#ifndef _BIRD_STRING_H_
+#define _BIRD_STRING_H_
+
+#include <stdarg.h>
+
+int bsprintf(char *str, const char *fmt, ...);
+int bvsprintf(char *str, const char *fmt, va_list args);
+
+#endif