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.
11 lines
253 B
11 lines
253 B
#ifndef _STRLIST_H_
|
|
#define _STRLIST_H_
|
|
|
|
char* string_init(char *str);
|
|
|
|
char** string_list_init();
|
|
int string_list_len(char **string_list);
|
|
char* string_list_dump(char **string_list);
|
|
char** string_list_append(char **string_list, char *string);
|
|
|
|
#endif
|
|
|