Move headers to include/

This commit is contained in:
Drew DeVault 2015-08-16 11:02:56 -04:00
parent 360b3d67b0
commit 7f8ebb7d0d
12 changed files with 1 additions and 1 deletions

14
include/stringop.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef _SWAY_STRINGOP_H
#define _SWAY_STRINGOP_H
#include "list.h"
char *strip_whitespace(char *str, int *trimmed_start);
char *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