$darkmode
Suckless OGL 1.0.0
A lean, high-performance C11 PBR Renderer
io.h
Go to the documentation of this file.
1 
6 #ifndef IO_H
7 #define IO_H
8 
9 #include <stddef.h>
10 
23 char* io_read_file(const char* path, size_t max_size, size_t* out_size);
24 
25 #endif /* IO_H */
char * io_read_file(const char *path, size_t max_size, size_t *out_size)
Reads an entire file into a null-terminated string.
Definition: io.c:11