9 lines
164 B
C
9 lines
164 B
C
#ifndef IO_H
|
|
#define IO_H
|
|
|
|
char *file_read(const char *filename);
|
|
size_t file_write(const char *fileName, const void *data, const size_t size);
|
|
|
|
|
|
#endif /* IO_H */
|