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.
73 switch (whence) {
97 whence = SEEK_SET;
139 if (whence == SEEK_SET)
226 (*seekfn)(fp->_cookie, (fpos_t)offset, whence) == POS_ERR) {
246 fseek(FILE *fp, long offset, int whence)
250 return(fseeko(fp, off, whence));