blob: 1718711793969efb95a3f7b16222b8ee2227e41f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef STRV_H
#define STRV_H
#include <stddef.h>
typedef struct {
const char *s;
size_t n;
} strv_t;
strv_t strv(const char *s);
int strv_split(strv_t *src, int chr, strv_t *dest);
#endif
|