mirror of https://github.com/dnomd343/ClearDNS
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
428 B
16 lines
428 B
#ifndef SUNDRY_H_
|
|
#define SUNDRY_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
char* show_bool(uint8_t value);
|
|
char* string_init(const char *str);
|
|
char* uint32_to_string(uint32_t number);
|
|
char* string_join(const char *base, const char *add);
|
|
void string_list_debug(char *describe, char **string_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
|
|
|