2021-03-08 23:16:14 -05:00
|
|
|
#ifndef IO_H
|
|
|
|
#define IO_H
|
|
|
|
|
2021-03-11 12:48:15 -05:00
|
|
|
#include <stdio.h>
|
2021-03-08 23:16:14 -05:00
|
|
|
|
2021-03-11 12:48:15 -05:00
|
|
|
char *file_read(const char *filename, size_t *readSize);
|
|
|
|
size_t file_write(const char *fileName, const void *data, const size_t size);
|
2021-03-08 23:16:14 -05:00
|
|
|
|
2021-03-31 08:47:18 -04:00
|
|
|
#endif /* IO_H */
|