Home | History | Annotate | Download | only in stdio

Lines Matching full:whence

46  * `Whence' must be one of the three SEEK_* macros.
49 fseeko(FILE *fp, off_t offset, int whence)
70 * Change any SEEK_CUR to SEEK_SET, and check `whence' argument.
71 * After this, whence is either SEEK_SET or SEEK_END.
74 switch (whence) {
100 whence = SEEK_SET;
143 if (whence == SEEK_SET)
232 (*seekfn)(fp->_cookie, (fpos_t)offset, whence) == POS_ERR) {
254 fseek(FILE *fp, long offset, int whence)
258 return(fseeko(fp, off, whence));