]> code.delx.au - pulseaudio/blob - src/tokenizer.h
cli protocol
[pulseaudio] / src / tokenizer.h
1 #ifndef footokenizerhfoo
2 #define footokenizerhfoo
3
4 struct tokenizer;
5
6 struct tokenizer* tokenizer_new(const char *s, unsigned args);
7 void tokenizer_free(struct tokenizer *t);
8
9 const char *tokenizer_get(struct tokenizer *t, unsigned i);
10
11 #endif