Symbol: lgetc
games/larn/create.c
238
i = lgetc();
games/larn/diag.c
262
level = c[CAVELEVEL] = lgetc();
games/larn/diag.c
263
playerx = lgetc();
games/larn/diag.c
264
playery = lgetc();
games/larn/diag.c
268
scrollname[k] = lgetc() ? scrollhide[k] : "";
games/larn/diag.c
270
potionname[k] = lgetc() ? potionhide[k] : "";
games/larn/diag.c
272
wizard = lgetc();
games/larn/diag.c
273
rmst = lgetc(); /* random monster creation flag */
games/larn/diag.c
276
itm_[i].qty = lgetc();
games/larn/diag.c
278
cheat = lgetc();
games/larn/diag.c
279
if (VERSION != lgetc()) { /* version number */
games/larn/diag.c
289
monster[i].genocided = lgetc(); /* genocide info */
games/larn/header.h
440
long lgetc(void);
games/larn/help.c
117
return (lgetc() - '0');
games/larn/io.c
399
i = 255 & lgetc();
games/larn/io.c
400
i |= (255 & lgetc()) << 8;
games/larn/io.c
401
i |= (255 & lgetc()) << 16;
games/larn/io.c
402
i |= (255 & lgetc()) << 24;
games/larn/io.c
426
*adr++ = lgetc();
games/larn/io.c
454
cc = lgetc();
games/larn/io.c
456
for (;; --n, cc = lgetc()) {
games/larn/io.c
481
if ((*str++ = ch = lgetc()) == '\0') {
usr.sbin/pfctl/parse.y
5516
c = lgetc(0);
usr.sbin/pfctl/parse.y
5537
while ((c = lgetc(0)) == ' ' || c == '\t')
usr.sbin/pfctl/parse.y
5542
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/pfctl/parse.y
5546
if ((c = lgetc(0)) == EOF)
usr.sbin/pfctl/parse.y
5576
if ((c = lgetc(quotec)) == EOF)
usr.sbin/pfctl/parse.y
5582
if ((next = lgetc(quotec)) == EOF)
usr.sbin/pfctl/parse.y
5605
next = lgetc(0);
usr.sbin/pfctl/parse.y
5613
next = lgetc(0);
usr.sbin/pfctl/parse.y
5621
next = lgetc(0);
usr.sbin/pfctl/parse.y
5638
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/pfctl/parse.y
5677
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/pfctl/parse.y
94
int lgetc(int);