diff options
author | 2019-03-13 15:36:46 -0700 | |
---|---|---|
committer | 2019-03-13 15:41:13 -0700 | |
commit | 77a53d41a63f06089ecc83c84fccd7c4a42a89af (patch) | |
tree | 4e7fa36f324dba48dea0aebb158ba7c9ff045ce2 /Source/Parser/wp_parser_c.h | |
parent | 56104548c321aa1d26f6773091e2801c47626dea (diff) | |
download | WarpX-77a53d41a63f06089ecc83c84fccd7c4a42a89af.tar.gz WarpX-77a53d41a63f06089ecc83c84fccd7c4a42a89af.tar.zst WarpX-77a53d41a63f06089ecc83c84fccd7c4a42a89af.zip |
switch to WarpXParser
Diffstat (limited to 'Source/Parser/wp_parser_c.h')
-rw-r--r-- | Source/Parser/wp_parser_c.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Source/Parser/wp_parser_c.h b/Source/Parser/wp_parser_c.h new file mode 100644 index 000000000..1c55433a0 --- /dev/null +++ b/Source/Parser/wp_parser_c.h @@ -0,0 +1,16 @@ +#ifndef WP_PARSER_C_H_ +#define WP_PARSER_C_H_ + +#include "wp_parser_y.h" + +#ifdef __cplusplus +extern "C" { +#endif + + struct wp_parser* wp_c_parser_new (char const* function_body); + +#ifdef __cplusplus +} +#endif + +#endif |