-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.h
132 lines (104 loc) · 1.7 KB
/
util.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#ifndef UTIL_H
#define UTIL_H
#include "common.h"
//#define ENABLE_LOG 1
#ifdef __cplusplus
extern "C"
{
#endif
void
trim(
char *str
);
char *va(
const char *format,
...
);
int
RandomLong(
int from,
int to
);
float
RandomFloat(
float from,
float to
);
void
UTIL_Delay(
unsigned int ms
);
void
TerminateOnError(
const char *fmt,
...
);
void *
UTIL_malloc(
size_t buffer_size
);
void *
UTIL_calloc(
size_t n,
size_t size
);
FILE *
UTIL_OpenRequiredFile(
LPCSTR lpszFileName
);
FIlE *
UTIL_OpenFile(
LPCSTR lpszFileName
);
VOID
UTIL_CloseFile(
FILE *fp
);
#ifdef __IOS__
LPCSTR
UTIL_IOS_BasePath(
VOID
);
LPCSTR
UTIL_IOS_SavePath(
VOID
);
#endif
#define _PATH_LOG PAL_PREFIX "log.txt"
#define LOG_EMERG 0 /* system is unusable */
#define LOG_ALERT 1 /* action must be taken immediately */
#define LOG_CRIT 2 /* critical conditions */
#define LOG_ERR 3 /* error conditions */
#define LOG_WARNING 4 /* warning conditions */
#define LOG_NOTICE 5 /* normal but significant condition */
#define LOG_INFO 6 /* informational */
#define LOG_DEBUG 7 /* debug-level messages */
#define LOG_LAST_PRIORITY 8 /* last level */
#ifdef ENABLE_LOG
FILE *
UTIL_OpenLog(
VOID
);
VOID
UTIL_CloseLog(
VOID
);
VOID
UTIL_WriteLog(
int Priority,
const char *Fmt,
...
);
#else
#define UTIL_OpenLog() ((void)(0))
#define UTIL_CloseLog() ((void)(0))
#ifdef _MSC_VER
__forceinline VOID UTIL_WriteLog(int i, const char *p, ...) {}
#else
#define UTIL_WriteLog(...) ((void)(0))
#endif
#endif
#ifdef __cplusplus
}
#endif
#endif