new scanf implementation and corresponding integer parser/converter
[musl] / src / internal / intscan.h
diff --git a/src/internal/intscan.h b/src/internal/intscan.h
new file mode 100644 (file)
index 0000000..994c5e7
--- /dev/null
@@ -0,0 +1,8 @@
+#ifndef INTSCAN_H
+#define INTSCAN_H
+
+#include <stdio.h>
+
+unsigned long long __intscan(FILE *, unsigned, int, unsigned long long);
+
+#endif