add string IO wrapper function prototypes

This commit is contained in:
Yuichi Nishiwaki 2014-01-16 18:30:03 +09:00
parent 8ce83bdbe7
commit 86eb4bb64b
1 changed files with 5 additions and 0 deletions

View File

@ -49,4 +49,9 @@ int pic_fclose(pic_file *);
size_t pic_fread(void *, size_t, size_t, pic_file *);
size_t pic_fwrite(const void *, size_t, size_t, pic_file *);
int pic_fgetc(pic_file *);
int pic_ungetc(int, pic_file *);
int pic_fputc(int, pic_file *);
int pic_fputs(const char *, pic_file *);
#endif