|
@ -4,13 +4,11 @@ |
|
|
#include <stdint.h> |
|
|
#include <stdint.h> |
|
|
|
|
|
|
|
|
char* show_bool(uint8_t value); |
|
|
char* show_bool(uint8_t value); |
|
|
|
|
|
uint8_t check_port(uint16_t port); |
|
|
char* string_load(const char *fmt, ...); |
|
|
char* string_load(const char *fmt, ...); |
|
|
char* uint32_to_string(uint32_t number); |
|
|
char* uint32_to_string(uint32_t number); |
|
|
char* string_join(const char *base, const char *add); |
|
|
char* string_join(const char *base, const char *add); |
|
|
void string_list_debug(char *describe, char **string_list); |
|
|
void string_list_debug(char *describe, char **string_list); |
|
|
void uint32_list_debug(char *describe, uint32_t **uint32_list); |
|
|
void uint32_list_debug(char *describe, uint32_t **uint32_list); |
|
|
|
|
|
|
|
|
uint8_t check_port(uint16_t port); |
|
|
|
|
|
uint16_t gen_rand_num(uint16_t limit); |
|
|
|
|
|
|
|
|
|
|
|
#endif |
|
|
#endif |
|
|