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.
14 lines
399 B
14 lines
399 B
#ifndef SUNDRY_H_
|
|
#define SUNDRY_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
uint8_t check_port(uint16_t port);
|
|
const char* show_bool(uint8_t value);
|
|
char* string_load(const char *fmt, ...);
|
|
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);
|
|
|
|
#endif
|
|
|