blob: 92118e91f274816bb6d90a4bd397e24eef27659f [file] [log] [blame]
David Sedlákf824ad52018-10-14 23:58:15 +02001/**
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
11LY_ERR
12parse_yin(struct ly_ctx *ctx, const char *data, struct lysp_module **mod_p)
13{
14
15}