]> git.sur5r.net Git - cc65/commitdiff
added file positioning functions (fseek etc.)
authorcpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 11 Aug 2000 21:34:28 +0000 (21:34 +0000)
committercpg <cpg@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 11 Aug 2000 21:34:28 +0000 (21:34 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@270 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/stdio.h

index e94d654594302b8608cb3651dd3fe37a73779cda..d4142beee1f283e0fba2eea37a5bbb6fa1d7ad5d 100644 (file)
@@ -87,6 +87,11 @@ int fputs (const char* s, FILE* f);
 size_t fread (void* buf, size_t size, size_t count, FILE* f);
 FILE* freopen (const char* name, const char* mode, FILE* f);
 size_t fwrite (const void* buf, size_t size, size_t count, FILE* f);
+int fgetpos(FILE* f, fpos_t *pos);
+int fsetpos(FILE* f, const fpos_t* pos);
+long ftell(FILE* f);
+int fseek(FILE* f, long offset, int whence);
+void rewind(FILE *f);
 int getchar (void);
 char* gets (char* s);
 void perror (const char* s);