summaryrefslogtreecommitdiffstats
path: root/src/tokenizer.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-06-19 01:01:09 +0000
committerLennart Poettering <lennart@poettering.net>2004-06-19 01:01:09 +0000
commit56f8c953dd609bc5c94011fe4acdd9ef6b875747 (patch)
tree9fb30d4fa48eea2b66f81bd84e16ebc22a9b09c6 /src/tokenizer.h
parent382e7aefd471a4600010a04e6497d4bfd2fd8663 (diff)
some more work on the cli
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@24 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/tokenizer.h')
-rw-r--r--src/tokenizer.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tokenizer.h b/src/tokenizer.h
new file mode 100644
index 00000000..c71ae790
--- /dev/null
+++ b/src/tokenizer.h
@@ -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