changeset 7179 | f84805e6df03 |
parent 7177 | bf6cf4dd847a |
child 7182 | 076aba32abd3 |
7177:bf6cf4dd847a | 7179:f84805e6df03 |
---|---|
1 /* |
|
2 * |
|
3 */ |
|
4 |
|
5 #ifndef LOGGING_H_ |
|
6 #define LOGGING_H_ |
|
7 |
|
8 #include<stdint.h> |
|
9 |
|
10 char* flib_format_ip(uint32_t numip); |
|
11 |
|
12 void flib_log_e(const char *fmt, ...); |
|
13 void flib_log_w(const char *fmt, ...); |
|
14 void flib_log_i(const char *fmt, ...); |
|
15 |
|
16 #endif /* LOGGING_H_ */ |