Lines Matching refs:sp
31 clearerr_unlocked(Sfio_t* sp)
33 clearerr(sp);
37 feof_unlocked(Sfio_t* sp)
39 return feof(sp);
43 ferror_unlocked(Sfio_t* sp)
45 return ferror(sp);
49 fflush_unlocked(Sfio_t* sp)
51 return fflush(sp);
55 fgetc_unlocked(Sfio_t* sp)
57 return fgetc(sp);
61 fgets_unlocked(char* buf, int size, Sfio_t* sp)
63 return fgets(buf, size, sp);
67 fileno_unlocked(Sfio_t* sp)
69 return fileno(sp);
73 fputc_unlocked(int c, Sfio_t* sp)
75 return fputc(c, sp);
79 fputs_unlocked(char* buf, Sfio_t* sp)
81 return fputs(buf, sp);
85 fread_unlocked(void* buf, size_t size, size_t n, Sfio_t* sp)
87 return fread(buf, size, n, sp);
91 fwrite_unlocked(void* buf, size_t size, size_t n, Sfio_t* sp)
93 return fwrite(buf, size, n, sp);
97 getc_unlocked(Sfio_t* sp)
99 return getc(sp);
109 putc_unlocked(int c, Sfio_t* sp)
111 return putc(c, sp);