commit | f824ad5c9440b11b688deb8e4529d5b859ef8367 | [log] [tgz] |
---|---|---|
author | David Sedlák <xsedla1d@stud.fit.vutbr.cz> | Sun Oct 14 23:58:15 2018 +0200 |
committer | David Sedlák <xsedla1d@stud.fit.vutbr.cz> | Sun Oct 14 23:58:15 2018 +0200 |
tree | a151280b02d0b99917a39981bd1a87e420fc864b | |
parent | 0c2cf3292494b2f974aa3bcc33f8723d2cd998b9 [diff] [blame] |
parser_yin PREPARE file and function header
diff --git a/src/parser_yin.c b/src/parser_yin.c new file mode 100644 index 0000000..92118e9 --- /dev/null +++ b/src/parser_yin.c
@@ -0,0 +1,15 @@ +/** + * @file parser_yin.c + * @author David Sedlák <xsedla1d@stud.fit.vutbr.cz> + * @brief YIN parser + */ + +#include "common.h" +#include "context.h" +#include "libyang.h" + +LY_ERR +parse_yin(struct ly_ctx *ctx, const char *data, struct lysp_module **mod_p) +{ + +}