Go to the source code of this file.
|
int | _doscan (register char *fmt, register int **argp, int(*getch)(int, int), int(*ungetch)(int, int), int arg1, int arg2) |
|
static char * | _getccl (char *) |
|
static int | _innum (int **, int, int, int, int(*getc)(int, int), int(*ungetc)(int, int), int, int, int *) |
|
static int | _instr (register char *, int, int, int(*getc)(int, int), int(*ungetc)(int, int), int, int, int *) |
|
◆ EOF
◆ LONG
◆ NULL
◆ REGULAR
◆ SHORT
◆ SPC
◆ STP
◆ _doscan()
int _doscan |
( |
register char * |
fmt, |
|
|
register int ** |
argp, |
|
|
int(*)(int, int) |
getch, |
|
|
int(*)(int, int) |
ungetch, |
|
|
int |
arg1, |
|
|
int |
arg2 |
|
) |
| |
Definition at line 38 of file doscan.c.
References _getccl(), _innum(), EOF, getch(), isdigit, isupper, LONG, REGULAR, SHORT, tolower, and ungetch().
Referenced by fscanf().
49 int **ptr, fileended, size;
60 if ((ch = *fmt++) ==
'%')
77 len = len * 10 + ch -
'0';
115 return (nmatch ? nmatch : -1);
124 arg2)) ==
' ' || ch1 ==
'\t' || ch1 ==
'\n')
129 (*ungetch) (arg1, arg2);
135 ch1 = (*getch) (arg1, arg2);
142 (*ungetch) (arg1, arg2);
static int ungetch(int, int)
#define tolower(c)
アルファベットの大文字を小文字に変換するマクロ
#define isdigit(c)
文字が10進数の数字かどうかをチェックするマクロ
static int _innum(int **, int, int, int, int(*getc)(int, int), int(*ungetc)(int, int), int, int, int *)
#define isupper(c)
文字がアルファベットの大文字かどうかをチェックするマクロ
static int getch(int, int)
static char * _getccl(char *)
◆ _getccl()
static char * _getccl |
( |
char * |
s | ) |
|
|
static |
Definition at line 367 of file doscan.c.
References STP.
Referenced by _doscan().
379 for (c = 0; c < 128; c++)
390 while (((c = *s++) & 0177) !=
']')
◆ _innum()
static int _innum |
( |
int ** |
ptr, |
|
|
int |
type, |
|
|
int |
len, |
|
|
int |
size, |
|
|
int(*)(int, int) |
getc, |
|
|
int(*)(int, int) |
ungetc, |
|
|
int |
arg1, |
|
|
int |
arg2, |
|
|
int * |
eofptr |
|
) |
| |
|
static |
Definition at line 153 of file doscan.c.
References _instr(), EOF, getch(), isdigit, LONG, NULL, REGULAR, SHORT, and ungetch().
Referenced by _doscan().
165 extern double atof(
char *p);
168 register char c, base;
169 int negflg, c1, ndigit;
172 if (type ==
'c' || type ==
's' || type ==
'[')
175 (ptr ? *(
char **)ptr : (
char *)
NULL, type, len,
getch,
185 else if (type ==
'x')
191 while ((c = (*
getch) (arg1, arg2)) ==
' ' || c ==
'\t' || c ==
'\n')
198 c = (*getch) (arg1, arg2);
204 c = (*getch) (arg1, arg2);
207 for (; --len >= 0; *np++ = c, c = (*getch) (arg1, arg2))
209 if (((
isdigit(c)) || base == 16)
210 && ((
'a' <= c && c <=
'f') || (
'A' <= c && c <=
'F')))
219 lcval = ((lcval << 2) + lcval) << 1;
226 if (
'0' <= c && c <=
'9')
230 else if (
'a' <= c && c <=
'f')
253 (*ungetch) (arg1, arg2);
260 if (ptr ==
NULL || np == numbuf)
268 **(
short **)ptr = lcval;
272 **(
int **)ptr = lcval;
276 **(
long **)ptr = lcval;
static int ungetch(int, int)
#define isdigit(c)
文字が10進数の数字かどうかをチェックするマクロ
static int getch(int, int)
static int _instr(register char *, int, int, int(*getc)(int, int), int(*ungetc)(int, int), int, int, int *)
◆ _instr()
static int _instr |
( |
register char * |
ptr, |
|
|
int |
type, |
|
|
int |
len, |
|
|
int(*)(int, int) |
getc, |
|
|
int(*)(int, int) |
ungetc, |
|
|
int |
arg1, |
|
|
int |
arg2, |
|
|
int * |
eofptr |
|
) |
| |
|
static |
Definition at line 286 of file doscan.c.
References EOF, getch(), SPC, and STP.
Referenced by _innum().
297 register unsigned int ch;
303 if (type ==
'c' && len == 30000)
312 while (
_sctab[ch = (*
getch) (arg1, arg2)] & ignstp)
324 else if (type ==
'[')
328 while (ch !=
EOF && (
_sctab[ch] & ignstp) == 0)
338 ch = (*getch) (arg1, arg2);
344 (*ungetch) (arg1, arg2);
352 if (ptr && ptr != optr)
static int getch(int, int)
◆ _sctab
Initial value:= {
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
SPC, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
}
Definition at line 23 of file doscan.c.