gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 3 of 3 for funcall:__svfscanf (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/stdio/sscanf.c - 2.3KB - 66 lines
62:         va_start(ap, fmt);
63:         ret = __svfscanf(&f, fmt, ap);
64:         va_end(ap);
bsd_source/lib/libc/src_bsd/stdio/vfscanf.c - 43.3KB - 970 lines
966:         FLOCKFILE(fp);
967:         r = __svfscanf(fp, fmt0, ap);
968:         FUNLOCKFILE(fp);
bsd_source/lib/libc/src_bsd/stdio/vsscanf.c - 2.2KB - 59 lines
57:         f._lb._base = NULL;
58:         return (__svfscanf(&f, fmt, ap));
59: }