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.
15 lines
428 B
15 lines
428 B
#ifndef _SWAY_STRINGOP_H
|
|
#define _SWAY_STRINGOP_H
|
|
#include "list.h"
|
|
|
|
void strip_whitespace(char *str);
|
|
void strip_comments(char *str);
|
|
list_t *split_string(const char *str, const char *delims);
|
|
void free_flat_list(list_t *list);
|
|
char *code_strchr(const char *string, char delimiter);
|
|
char *code_strstr(const char *haystack, const char *needle);
|
|
int unescape_string(char *string);
|
|
char *join_args(char **argv, int argc);
|
|
|
|
#endif
|