blob: 83751369d7875cf18b7151b88a06c0fb158e9493 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef STRING_H
#define STRING_H
#include "def.h"
isize str_cmp(str s1, str s2);
usize str_find(str s, str tokens);
usize str_parse_num(str s, u8 base, u64 *x);
str str_split_walk(str *s, str sep);
#endif
|