kolibrios/programs/develop/libraries/kolibri-libc/source/stdio/scanf.c
turbocat 728f124678 Added git source kolibri-libc and
Configured autobuild

git-svn-id: svn://kolibrios.org@8687 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-04-27 16:33:31 +00:00

22 lines
400 B
C

//#include "format_scan.h"
#include <stdlib.h>
#include <errno.h>
int scanf ( const char * format, ...)
{
va_list arg;
int n;
va_start(arg, format);
if(__scanf_buffer == NULL) __scanf_buffer = malloc(STDIO_MAX_MEM);
if(__scanf_buffer == NULL) errno = ENOMEM; return ENOMEM;
*__scanf_buffer = 0;
n = vscanf(format, arg);
va_end(arg);
return n;
}