head 1.1; branch 1.1.1; access; symbols SFIO_1999:1.1.1.2 SFIO_1998:1.1.1.1 SFIO_1997:1.1.1.1 ATT:1.1.1; locks; strict; comment @ * @; 1.1 date 96.11.20.01.33.58; author rse; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 96.11.20.01.33.58; author rse; state Exp; branches; next 1.1.1.2; 1.1.1.2 date 99.06.06.04.13.07; author rse; state Exp; branches; next ; desc @@ 1.1 log @Initial revision @ text @#include "sfstdio.h" /* Get current stream position. ** Written by Kiem-Phong Vo. */ #if __STD_C int fgetpos(reg FILE* fp, reg fpos_t* pos) #else int fgetpos(fp, pos) reg FILE* fp; reg fpos_t* pos; #endif { reg Sfio_t* sp; if(!(sp = _sfstream(fp))) return -1; _stdclrerr(fp,sp); return (*pos = (fpos_t)sftell(sp)) >= 0 ? 0 : -1; } @ 1.1.1.1 log @Import of Sfio1997 @ text @@ 1.1.1.2 log @Import of Sfio1999 @ text @d20 1 a20 1 return (*pos = (fpos_t)sfseek(sp, (Sfoff_t)0, SEEK_CUR|SF_SHARE)) >= 0 ? 0 : -1; @