Merge remote-tracking branch 'upstream/libyang2' into libyang2
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)
+{
+
+}