38f191c997
Here you have it.
10 lines
226 B
C
10 lines
226 B
C
#ifndef IO_H
|
|
#define IO_H
|
|
|
|
#include <stdio.h>
|
|
|
|
char *file_read(const char *filename, size_t *readSize);
|
|
size_t file_write(const char *fileName, const void *data, const size_t size);
|
|
|
|
#endif /* IO_H */
|