opengl-stuff/src/common.hpp

9 lines
125 B
C++
Raw Normal View History

2023-07-06 16:46:07 +03:00
#pragma once
#include <cstdio>
typedef int Errno;
2023-08-30 05:59:37 +03:00
Errno read_entire_file(FILE *f, char **out_data, bool null_terminate);