/src/lib/libc/ssp/ |
fgets_chk.c | 43 #undef fgets 49 return fgets(buf, len, fp); 54 return fgets(buf, len, fp);
|
gets_chk.c | 58 if (fgets(abuf, (int)(slen + 1), stdin) == NULL) {
|
/src/games/hangman/ |
getword.c | 58 if (fgets(Word, BUFSIZ, inf) == NULL) 60 if (fgets(Word, BUFSIZ, inf) == NULL)
|
/src/tests/lib/libc/ssp/ |
h_fgets.c | 42 (void)fgets(b, len, stdin);
|
/src/tests/lib/libc/stdio/ |
h_testnumbers.c | 10 while (fgets(line, sizeof(line), stdin) != NULL) {
|
/src/tests/lib/libc/hash/ |
h_hash.c | 86 while (fgets((char *)buf, sizeof(buf), stdin) != NULL) { 97 fgets((char *)buf, sizeof(buf), stdin) != NULL) { 110 fgets((char *)buf, sizeof(buf), stdin) != NULL) {
|
/src/sys/external/bsd/acpica/dist/tools/efihello/ |
efihello.c | 210 Result = fgets (LineBuffer, LINE_SIZE, File);
|
/src/games/hack/ |
hack.rumors.c | 101 if (!fgets(line, sizeof(line), rumf)) 113 if (!fgets(line, sizeof(line), rumf))
|
/src/games/warp/ |
sm.c | 26 fgets(screen[0],90,stdin); 57 fgets(screen[y],90,stdin);
|
/src/lib/libc/stdio/ |
fgets.c | 1 /* $NetBSD: fgets.c,v 1.28 2012/03/15 18:22:30 christos Exp $ */ 38 static char sccsid[] = "@(#)fgets.c 8.2 (Berkeley) 12/22/93"; 40 __RCSID("$NetBSD: fgets.c,v 1.28 2012/03/15 18:22:30 christos Exp $"); 51 #undef fgets 60 fgets(char *buf, int n, FILE *fp) function in typeref:typename:char *
|
/src/games/ching/printching/ |
printching.c | 109 hexptr = fgets(hexstr, 6+1, stdin); 230 if (fgets(textln, sizeof(textln), chingf) == NULL) { 254 if (fgets(textln, sizeof(textln), chingf) == NULL) { 298 if (fgets(textln, sizeof(textln), chingf) == NULL) 318 if (fgets(textln, sizeof(textln), chingf) == NULL)
|
/src/lib/libc/quad/TESTS/ |
mul.c | 60 if (fgets(buf, sizeof buf, stdin) == NULL)
|
/src/tests/fs/lfs/ |
util.c | 38 while (fgets(buf, MAXLINE, pipe) != NULL) { 42 while (fgets(buf, MAXLINE, pipe) != NULL) 132 while (fgets(s, MAXLINE, pipe) != NULL) { 160 while (fgets(s, MAXLINE, pipe) != NULL)
|
/src/games/battlestar/ |
cypher.c | 415 fgets(buffer, 10, stdin); 419 fgets(buffer, 10, stdin); 423 fgets(buffer, 10, stdin); 427 fgets(buffer, 10, stdin); 431 fgets(buffer, 10, stdin); 435 fgets(buffer, 10, stdin); 439 fgets(buffer, 10, stdin); 443 fgets(buffer, 10, stdin);
|
getcom.c | 48 if (fgets(buf, size, stdin) == NULL) {
|
/src/sys/arch/powerpc/tools/chrpicon/chrpicontoppm/ |
chrpicontoppm.c | 146 while (fgets(line, MAX_LINE_LENGTH, fp)) { 174 while (fgets(line, MAX_LINE_LENGTH, fp)) { 194 if ((p = fgets(line, MAX_LINE_LENGTH, fp)) == NULL) {
|
/src/sys/external/bsd/acpica/dist/tools/acpixtract/ |
acpixtract.c | 234 while (fgets (Gbl_LineBuffer, AX_LINE_BUFFER_SIZE, InputFile)) 438 while (fgets (Gbl_LineBuffer, AX_LINE_BUFFER_SIZE, InputFile)) 596 while (fgets (Gbl_LineBuffer, AX_LINE_BUFFER_SIZE, InputFile))
|
/src/distrib/utils/edlabel/ |
edlabel.c | 134 if (fgets(tmpbuf, sizeof(tmpbuf), stdin) == NULL) 187 if (fgets(tmpbuf, sizeof(tmpbuf), stdin) == NULL) 193 if (fgets(tmpbuf, sizeof(tmpbuf), stdin) == NULL) 302 if (fgets(tmpbuf, sizeof(tmpbuf), stdin) == NULL) 309 if (fgets(tmpbuf, sizeof(tmpbuf), stdin) == NULL) 315 if (fgets(tmpbuf, sizeof(tmpbuf), stdin) == NULL) 439 if (fgets(tmpbuf, sizeof(tmpbuf), stdin) == NULL) 522 if (fgets(tmpbuf, sizeof(tmpbuf), stdin) == NULL)
|
/src/games/phantasia/ |
setup.c | 48 / fgets(), floor(), srandom(), umask(), drandom(), strcpy(), getuid(), 154 while (fgets(Databuf, SZ_DATABUF, fp) != NULL) 177 if (fgets(Databuf, SZ_DATABUF, stdin) == NULL)
|
/src/usr.bin/error/ |
filter.c | 108 fgets(inbuffer, sizeof(inbuffer)-1, fyle) != NULL; nignored++) 113 (fgets (inbuffer, sizeof(inbuffer)-1, fyle) != NULL); i++) {
|
/src/games/boggle/boggle/ |
help.c | 73 if (fgets(buf, sizeof(buf), fp) == NULL) {
|
/src/games/boggle/mkdict/ |
mkdict.c | 75 fgets(buf[current], MAXWORDLEN + 1, stdin) != NULL; ++nwords) {
|
/src/games/mille/ |
varpush.c | 87 fgets(buf, (int)sizeof(buf), stdin);
|
/src/games/monop/ |
getinp.c | 61 fgets(buf, sizeof(buf), stdin);
|
/src/include/ssp/ |
stdio.h | 70 #define fgets(str, len, fp) \ macro
|