diff options
author | ubq323 <ubq323@ubq323.website> | 2024-06-26 12:09:30 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-06-26 12:10:33 +0100 |
commit | a2525f2fc3f41c792065e61079e8e7126210529e (patch) | |
tree | d8e4b1d5c58c0b504a7962023a78a9d2b7a83e30 /read.c | |
parent | 7854c6d1c129f1979434514f4716d89752608288 (diff) |
parse multiple expressions
Diffstat (limited to 'read.c')
-rw-r--r-- | read.c | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -1,14 +0,0 @@ -#include <string.h> -#include <stdio.h> - -#include "read.h" - -AstNode read() { - AstNode ret; - memset(&ret, 0, sizeof ret); - pcc_context_t *ctx = pcc_create(NULL); - pcc_parse(ctx, &ret); - pcc_destroy(ctx); - return ret; -} - |