]> git.lizzy.rs Git - nothing.git/blob - src/system/str.h
Delete LineStream from the existance
[nothing.git] / src / system / str.h
1 #ifndef STR_H_
2 #define STR_H_
3
4 #define STRINGIFY(x) STRINGIFY2(x)
5 #define STRINGIFY2(x) #x
6
7 char *string_duplicate(const char *str,
8                        const char *str_end);
9 char *trim_endline(char *s);
10
11 #endif  // STR_H_