source: trunk/sys/dietlibc/fscanf.c @ 81

Last change on this file since 81 was 1, checked in by alain, 7 years ago

First import

File size: 263 bytes
Line 
1#include <stdarg.h>
2#include <stdlib.h>
3#include "dietstdio.h"
4#include <unistd.h>
5
6int fscanf(FILE *stream, const char *format, ...) {
7  int n;
8  va_list arg_ptr;
9  va_start(arg_ptr, format);
10  n=vfscanf(stream,format,arg_ptr);
11  va_end (arg_ptr);
12  return n;
13}
Note: See TracBrowser for help on using the repository browser.