#ifndef LOAD_SHADERS_H #define LOAD_SHADERS_H #include #include #ifdef __cplusplus extern "C" { #endif GLuint loadShaders(const char* vertex_file_path, const char* fragment_file_path); #ifdef __cplusplus } #endif #endif