Searched refs:getwc (Results 1 - 15 of 15) sorted by relevance

/freebsd-current/lib/libc/stdio/
H A Dgetwc.c42 #undef getwc macro
45 * Synonym for fgetwc(). The only difference is that getwc(), if it is a
49 getwc(FILE *fp) function
H A DMakefile.inc15 gets.c gets_s.c getw.c getwc.c getwchar.c makebuf.c mktemp.c \
39 getline.3 getwc.3 mktemp.3 open_memstream.3 \
81 MLINKS+=getwc.3 fgetwc.3 \
82 getwc.3 getwchar.3
/freebsd-current/usr.bin/paste/
H A Dpaste.c152 if ((ich = getwc(lp->fp)) == WEOF) {
176 } while ((ich = getwc(lp->fp)) != WEOF && ich != '\n');
203 while ((ch = getwc(fp)) != WEOF) {
/freebsd-current/contrib/vis/
H A Dvis.c191 c = getwc(fp);
202 rachar = getwc(fp);
/freebsd-current/contrib/netbsd-tests/lib/libc/locale/
H A Dt_io.c128 atf_tc_set_md_var(tc, "descr", "Test good big5 wchar getwc");
143 ATF_REQUIRE_EQ(getwc(fp), 0xcf40);
150 atf_tc_set_md_var(tc, "descr", "Test bad big5 wchar getwc");
164 ATF_REQUIRE_EQ(getwc(fp), WEOF);
/freebsd-current/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcwchar.inc26 using ::getwc;
/freebsd-current/usr.bin/cut/
H A Dcut.c343 if ((ch = getwc(fp)) == WEOF)
352 while ((ch = getwc(fp)) != WEOF && ch != '\n')
355 while ((ch = getwc(fp)) != WEOF && ch != '\n');
/freebsd-current/contrib/nvi/common/
H A Dmultibyte.h58 #define GETC getwc
/freebsd-current/include/
H A Dwchar.h121 wint_t getwc(FILE *);
187 #define getwc(fp) fgetwc(fp) macro
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dcwchar.inc26 using std::getwc;
/freebsd-current/usr.bin/finger/
H A Dnet.c165 while ((c = getwc(fp)) != EOF) {
/freebsd-current/usr.bin/ul/
H A Dul.c166 while ((c = getwc(f)) != WEOF) {
208 switch (c = getwc(f)) {
/freebsd-current/bin/cat/
H A Dcat.c334 * Our getwc(3) doesn't change file position
337 if ((wch = getwc(fp)) == WEOF) {
/freebsd-current/usr.bin/fmt/
H A Dfmt.c743 while ((ch = getwc(stream)) != '\n' && ch != WEOF) {
/freebsd-current/contrib/llvm-project/libcxx/src/
H A Dstd_stream.h77 // getwc. If the user sets a custom locale with imbue(), that gets honored,
111 wint_t __c = getwc(__fp);

Completed in 284 milliseconds