Lines Matching defs:file
4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
279 fgetNUL(obuf, rmdr, file)
282 FILE *file;
287 while (--rmdr > 0 && (c = xgetc(file)) != 0 && c != EOF)
290 return ((feof(file) || ferror(file)) ? NULL : 1);
293 xgetc(file)
294 FILE *file;
298 return (getc(file));