Lines Matching refs:fctx
79 fileIOCtx *fctx; in filePutbuf() local
80 fctx = (fileIOCtx *) ctx; in filePutbuf()
82 return fwrite(buf, 1, size, fctx->f); in filePutbuf()
88 fileIOCtx *fctx; in fileGetbuf() local
89 fctx = (fileIOCtx *) ctx; in fileGetbuf()
91 return fread(buf, 1, size, fctx->f); in fileGetbuf()
97 fileIOCtx *fctx; in filePutchar() local
98 fctx = (fileIOCtx *) ctx; in filePutchar()
102 putc (b, fctx->f); in filePutchar()
107 fileIOCtx *fctx; in fileGetchar() local
108 fctx = (fileIOCtx *) ctx; in fileGetchar()
110 return getc (fctx->f); in fileGetchar()
116 fileIOCtx *fctx; in fileSeek() local
117 fctx = (fileIOCtx *) ctx; in fileSeek()
119 return (fseek (fctx->f, pos, SEEK_SET) == 0); in fileSeek()
124 fileIOCtx *fctx; in fileTell() local
125 fctx = (fileIOCtx *) ctx; in fileTell()
127 return ftell (fctx->f); in fileTell()