about summary refs log tree commit diff
path: root/src/stdio/sscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/sscanf.c')
-rw-r--r--src/stdio/sscanf.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/stdio/sscanf.c b/src/stdio/sscanf.c
new file mode 100644
index 00000000..a1cea699
--- /dev/null
+++ b/src/stdio/sscanf.c
@@ -0,0 +1,12 @@
+#include <stdio.h>
+#include <stdarg.h>
+
+int sscanf(const char *s, const char *fmt, ...)
+{
+	int ret;
+	va_list ap;
+	va_start(ap, fmt);
+	ret = vsscanf(s, fmt, ap);
+	va_end(ap);
+	return ret;
+}