diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-01-18 20:42:54 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-01-18 20:49:30 +0330 |
commit | 43392fc66ab207e53a6924a2edbcd7ca0acecea8 (patch) | |
tree | 5a064c4e144035d1a07f31f767417b9e44b2ebbf /src/utils/log.h |
initial commit
Diffstat (limited to 'src/utils/log.h')
-rw-r--r-- | src/utils/log.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utils/log.h b/src/utils/log.h new file mode 100644 index 0000000..32f6a8f --- /dev/null +++ b/src/utils/log.h @@ -0,0 +1,5 @@ +#pragma once + +#define printLog(format,...) _printLogBack(format, __FILE_NAME__, __LINE__, ## __VA_ARGS__) + +extern void _printLogBack(const char *format, const char *file, int line, ...); |