summary refs log tree commit diff
path: root/strv.h
blob: 553a39c0d18b5d41a26ca5914150a39e89524399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef STRV_H
#define STRV_H

#include <stddef.h>

typedef struct {
	const char *s;
	size_t n;
} strv_t;

strv_t strv_head(strv_t ss, int chr, size_t *i);

#endif