diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2025-05-29 20:10:01 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2025-05-29 20:10:01 -0400 |
| commit | 5b05099d44ae6ac962be108f4c0da7493a9305c7 (patch) | |
| tree | 1b796b3ff1491e83f26c9ba09fd6c48feac7c994 /src/io.h | |
Diffstat (limited to 'src/io.h')
| -rw-r--r-- | src/io.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/io.h b/src/io.h new file mode 100644 index 0000000..7555ee5 --- /dev/null +++ b/src/io.h @@ -0,0 +1,10 @@ +#ifndef _IO_H +#define _IO_H + +#include <stddef.h> +#include <stdbool.h> + +bool ReadFile(const char * const path, const size_t n, char * const buffer); + +#endif + |
