#ifndef __GS_LOG_H #define __GS_LOG_H enum gs_log_level { GS_INFO = 0, GS_WARNING, GS_ERROR, GS_FATAL }; void gs_log(enum gs_log_level level, const char *namespace, const char *format, ...); #endif