<- Back to shtanton's homepage
aboutsummaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/test.c b/test.c
index b2f9976..d4d138b 100644
--- a/test.c
+++ b/test.c
@@ -1,2 +1,11 @@
+#include <stdio.h>
+#include "cudl.h"
+
int main() {
+ struct cudl_value value;
+ cudl_parse_from_file(stdin, &value);
+ if (cudl_err)
+ return cudl_err;
+ cudl_debug(value);
+ return 0;
}