]> pilppa.org Git - libplp.git/blob - src/str_util.h
api fixes and cleanups
[libplp.git] / src / str_util.h
1 /*
2  * str_util.h
3  *
4  *  Created on: Feb 14, 2011
5  *      Author: lamikr
6  */
7
8 #ifndef STR_UTIL_H_
9 #define STR_UTIL_H_
10
11 #include <stdbool.h>
12
13 #ifdef __cplusplus
14 extern "C"
15 #endif
16 char *get_as_hex_str(const char *byte_arr, int byte_count);
17
18 #ifdef __cplusplus
19 extern "C"
20 #endif
21 bool parse_long(const char *str, long *result);
22
23 #endif /* STR_UTIL_H_ */