Home
last modified time | relevance | path

Searched refs:getc_unlocked (Results 1 – 8 of 8) sorted by relevance

/picolibc-latest/newlib/libc/tinystdio/
Dfgetc.c59 #undef getc_unlocked
62 __strong_reference(fgetc, getc_unlocked);
65 int getc_unlocked(FILE *stream) { return fgetc(stream); } in getc_unlocked() function
Dstdio.h371 int getc_unlocked (FILE *);
378 #define getc_unlocked(f) fgetc(f) macro
/picolibc-latest/newlib/libc/stdio/
Dgetc_u.c69 #undef getc_unlocked
72 getc_unlocked ( in getc_unlocked() function
Dgetchar_u.c76 return getc_unlocked ( stdin ); in getchar_unlocked()
Dgetdelim.c88 if ((ch = getc_unlocked (fp)) == EOF) in __getdelim()
Dstdio.h511 int getc_unlocked (FILE *);
791 #define getchar_unlocked() getc_unlocked(stdin)
Dstdio.tex76 * Function getc_unlocked:: Get a character from a file or stream (macro)
/picolibc-latest/newlib/
DChangeLog-201518249 * libc/include/stdio.h: Add declarations for getc_unlocked,