10 lines
140 B
C
10 lines
140 B
C
|
#ifndef _BSP_LOG_H
|
||
|
#define _BSP_LOG_H
|
||
|
|
||
|
void BSPLogInit();
|
||
|
|
||
|
int PrintLog(const char *fmt, ...);
|
||
|
|
||
|
void Float2Str(char *str, float va);
|
||
|
|
||
|
#endif
|