17 lines
202 B
C
17 lines
202 B
C
|
#ifndef KIT_STRING_H_
|
||
|
#define KIT_STRING_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "kit_macro.h"
|
||
|
|
||
|
void char_to_bcd_string(uint8_t value, char *str);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|