gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 5 of 5 for funcall:fgets (0.01 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsdlib/libc/net/getaddrinfo.c - 74.1KB - 2,420 lines
1777: #ifndef T2EX
1778:         if (!(p = fgets(hostbuf, sizeof hostbuf, *hostf)))
1779:                 return (NULL);
bsd_source/t2ex/network/net/src_bsdlib/libc/net/gethnamaddr.c - 48.5KB - 1,584 lines
844: #ifndef T2EX
845:         if (!(p = fgets(hostbuf, sizeof hostbuf, hostf))) {
846:                 h_errno = HOST_NOT_FOUND;
bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/res_init.c - 36.4KB - 1,026 lines
393:             /* read the config file */
394:             while (fgets(buf, sizeof(buf), fp) != NULL) {
395:                 /* skip comments */
bsd_source/t2ex/network/net/src_bsdlib/libc/resolv/res_query.c - 20.3KB - 567 lines
540:         buf[sizeof(buf) - 1] = '\0';
541:         while (fgets(buf, sizeof(buf), fp)) {
542:                 for (cp1 = buf; *cp1 && !isspace((unsigned char)*cp1); ++cp1)
t2ex_source/kernel/sysmain/src/appl_main.c - 3.6KB - 106 lines
59: #define P                       printf
60: #define Gets(buf, bufsz)        fgets(buf, bufsz, stdin)
61: #else