home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_progs
/
prog_c
/
zc.lzh
/
ZC
/
ZCSRC.LZH
/
IOLib
/
stdio
/
sscanf.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1988-11-09
|
379 b
|
28 lines
#include <stdio.h>
static int sgetc(s)
unsigned char **s;
{
register unsigned char c;
c = *(*s)++;
return((c == '\0') ? EOF : c);
}
static int sungetc(c, s)
int c;
unsigned char **s;
{
if(c == EOF)
c = '\0';
return(*--(*s) = c);
}
sscanf(buf, fmt, arg)
unsigned char *buf;
unsigned char *fmt;
int arg;
{
return(_scanf(&buf, sgetc, sungetc, fmt, &arg));
}