clibs
Tiny but handy utility libraries for C
cio.h
Go to the documentation of this file.
1 
6 #ifndef CLIBS_CIO_H
7 #define CLIBS_CIO_H
8 
9 #include <stdio.h>
10 
16 char * stream_read_all(FILE *fp);
17 
18 #endif /* CLIBS_CIO_H */
char * stream_read_all(FILE *fp)
Read all the content of fp into C string.
Definition: cio.c:18