Added ev_log

Signed-off-by: Robear Selwans <robear.selwans@outlook.com>
This commit is contained in:
2025-07-07 16:36:29 +03:00
parent 2dcc69e692
commit ea9d45625d
4 changed files with 219 additions and 0 deletions

9
log_test.c Normal file
View File

@@ -0,0 +1,9 @@
#define EV_LOG_IMPLEMENTATION
#include "ev_log.h"
int main()
{
ev_log_trace("Trace Log");
return 0;
}