some more work on the cli

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@24 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2004-06-19 01:01:09 +00:00
parent 382e7aefd4
commit 56f8c953dd
13 changed files with 458 additions and 58 deletions

11
src/tokenizer.h Normal file
View file

@ -0,0 +1,11 @@
#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