gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 3 of 3 for funcall:vfscanf (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/stdio/fscanf.c - 2.0KB - 48 lines
44:         va_start(ap, fmt);
45:         ret = vfscanf(fp, fmt, ap);
46:         va_end(ap);
bsd_source/lib/libc/src_bsd/stdio/scanf.c - 1.9KB - 48 lines
44:         va_start(ap, fmt);
45:         ret = vfscanf(stdin, fmt, ap);
46:         va_end(ap);
bsd_source/lib/libc/src_bsd/stdio/vscanf.c - 1.8KB - 41 lines
39: 
40:         return (vfscanf(stdin, fmt, ap));
41: }