David Sedlák | f824ad5 | 2018-10-14 23:58:15 +0200 | [diff] [blame^] | 1 | /** |
2 | * @file parser_yin.c | ||||
3 | * @author David Sedlák <xsedla1d@stud.fit.vutbr.cz> | ||||
4 | * @brief YIN parser | ||||
5 | */ | ||||
6 | |||||
7 | #include "common.h" | ||||
8 | #include "context.h" | ||||
9 | #include "libyang.h" | ||||
10 | |||||
11 | LY_ERR | ||||
12 | parse_yin(struct ly_ctx *ctx, const char *data, struct lysp_module **mod_p) | ||||
13 | { | ||||
14 | |||||
15 | } |