Searched defs:fgets (Results 1 - 6 of 6) sorted by relevance

/external/syslinux/com32/lib/
H A Dfgets.c2 * fgets.c
11 char *fgets(char *s, int n, FILE * f) function
/external/bison/lib/
H A Dunlocked-io.h65 # undef fgets macro
66 # define fgets(x,y,z) fgets_unlocked (x,y,z) macro
68 # define fgets_unlocked(x,y,z) fgets (x,y,z)
/external/e2fsprogs/intl/
H A Dlocalealias.c101 # define FGETS(buf, n, fp) fgets (buf, n, fp)
114 # undef fgets macro
115 # define fgets(buf, len, s) fgets_unlocked (buf, len, s) macro
/external/bison/darwin-lib/
H A Dstdio.h551 # undef fgets
552 # define fgets rpl_fgets
554 _GL_FUNCDECL_RPL (fgets, char *, (char *s, int n, FILE *stream)
556 _GL_CXXALIAS_RPL (fgets, char *, (char *s, int n, FILE *stream));
558 _GL_CXXALIAS_SYS (fgets, char *, (char *s, int n, FILE *stream));
560 _GL_CXXALIASWARN (fgets); variable
1024 _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
/external/bison/linux-lib/
H A Dstdio.h551 # undef fgets
552 # define fgets rpl_fgets
554 _GL_FUNCDECL_RPL (fgets, char *, (char *s, int n, FILE *stream)
556 _GL_CXXALIAS_RPL (fgets, char *, (char *s, int n, FILE *stream));
558 _GL_CXXALIAS_SYS (fgets, char *, (char *s, int n, FILE *stream));
560 _GL_CXXALIASWARN (fgets); variable
1024 _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
/external/python/cpython2/Objects/
H A Dfileobject.c1185 Routine to get next line using platform fgets().
1195 + MS fgets locks/unlocks only once per line; it's the only hook we have.
1197 So we use fgets for speed(!), despite that it's painful.
1207 CAUTION: The C std isn't clear about this: in those cases where fgets
1209 required trailing null byte? MSVC 6 fgets does not, and no platform is (yet)
1210 known on which it does; and it would be a strange way to code fgets. Still,
1212 test_bufio.py should fail if platform fgets() routinely writes beyond the
1220 * If you want to use fgets() instead, #define USE_FGETS_IN_GETLINE.
1222 * By default, use fgets().
1223 * If you don't want to use fgets(), #defin
2709 #undef fgets macro
[all...]

Completed in 209 milliseconds