1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-28 08:03:16 +00:00
janet/parse.h

13 lines
309 B
C
Raw Normal View History

2017-02-09 20:02:59 +00:00
#ifndef PARSE_H_ONYWMADW
#define PARSE_H_ONYWMADW
#include "datatypes.h"
/* Initialize a parser */
void gst_parser(GstParser *p, Gst *vm);
2017-02-09 20:02:59 +00:00
/* Parse a c style string. Returns true if successful */
int gst_parse_cstring(GstParser *p, const char *string);
2017-02-09 20:02:59 +00:00
#endif /* end of include guard: PARSE_H_ONYWMADW */