mirror of
https://github.com/fluencelabs/musl
synced 2025-06-25 12:42:02 +00:00
initial check-in, version 0.5.0
This commit is contained in:
12
src/stdio/sscanf.c
Normal file
12
src/stdio/sscanf.c
Normal file
@ -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;
|
||||
}
|
Reference in New Issue
Block a user