OSDN Git Service

とりあえずのbluetooth実装
[tondenhei/et2013.git] / tsprintf.h
1 /*\r
2   Tiny sprintf module\r
3    for Embedded microcontrollers\r
4 \r
5    (Ver 1.0)\r
6 */\r
7 \r
8 #ifndef _TSPRINTF_H_\r
9 #define _TSPRINTF_H_\r
10 \r
11 #include <stdarg.h>\r
12 \r
13 #ifdef __cplusplus \r
14 extern "C"{\r
15 #endif  /* __cplusplus  */\r
16 \r
17 extern int tsprintf(char* ,char* , ...);\r
18 extern int vtsprintf(char* buff,char* fmt,va_list arg);\r
19 \r
20 #ifdef __cplusplus \r
21 }\r
22 #endif  /* __cplusplus  */\r
23 \r
24 #endif /* _TSPRINTF_H_ */\r