summaryrefslogtreecommitdiff
path: root/third_party/spiro/ppedit/sexp.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/spiro/ppedit/sexp.h')
-rw-r--r--third_party/spiro/ppedit/sexp.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/third_party/spiro/ppedit/sexp.h b/third_party/spiro/ppedit/sexp.h
new file mode 100644
index 0000000..162152d
--- /dev/null
+++ b/third_party/spiro/ppedit/sexp.h
@@ -0,0 +1,10 @@
+typedef struct {
+ FILE *f;
+ char tokbuf[256];
+ int singlechar;
+ int is_double;
+ double d;
+} sexp_reader;
+
+int
+sexp_token(sexp_reader *sr);