blob: c1e8a228a0bfcdf9c3a8fccf2b5caf4875c75bcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
/* SPDX-License-Identifier: Unlicense */
#include <stdio.h>
#include <stddef.h>
#define LOG_LEVEL_OFF 0
#define LOG_LEVEL_INFO 1
#define LOG_LEVEL_DEBUG 2
#define LOG_LEVEL_TRACE 3
void FPrintRaw(FILE *s, void const *data_arg, size_t size);
extern int g_log_level;
|