summaryrefslogtreecommitdiff
path: root/src/io.h
blob: 7555ee5d80775c79e6fc11efa37684c343e19427 (plain)
1
2
3
4
5
6
7
8
9
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