ack/lang/cem/libcc/stdio/sscanf.c

18 lines
441 B
C
Raw Normal View History

1987-01-27 15:57:55 +00:00
#include <stdio.h>
int sscanf (string, format, args)
char *string; /* source of data */
char *format; /* control string */
unsigned args; /* our args */
{
FILE _tempfile;
_tempfile._fd = -1;
_tempfile._flags = IO_READMODE + IO_UNBUFF;
_tempfile._buf = (unsigned char *) string;
_tempfile._ptr = (unsigned char *) string;
_tempfile._count = 32767;
return _doscanf (&_tempfile, format, &args);
}