mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
12 lines
244 B
C
12 lines
244 B
C
|
|
#ifndef footokenizerhfoo
|
||
|
|
#define footokenizerhfoo
|
||
|
|
|
||
|
|
struct tokenizer;
|
||
|
|
|
||
|
|
struct tokenizer* tokenizer_new(const char *s, unsigned args);
|
||
|
|
void tokenizer_free(struct tokenizer *t);
|
||
|
|
|
||
|
|
const char *tokenizer_get(struct tokenizer *t, unsigned i);
|
||
|
|
|
||
|
|
#endif
|