summaryrefslogtreecommitdiffstats
path: root/src/tokenizer.h
blob: 160b23e0d9c7a1d34c5029bc27da1b85f7fd1b7d (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef footokenizerhfoo
#define footokenizerhfoo

struct pa_tokenizer;

struct pa_tokenizer* pa_tokenizer_new(const char *s, unsigned args);
void pa_tokenizer_free(struct pa_tokenizer *t);

const char *pa_tokenizer_get(struct pa_tokenizer *t, unsigned i);

#endif