tests CHANGE add unit test for yin_parse_import function
diff --git a/src/parser_yin.h b/src/parser_yin.h
index 01cae2b..aa19506 100644
--- a/src/parser_yin.h
+++ b/src/parser_yin.h
@@ -51,7 +51,16 @@
*
* @return LY_ERR values.
*/
-LY_ERR
-parse_namespace(struct lyxml_context *xml_ctx, const char **data, const char **namespace);
+LY_ERR parse_namespace(struct lyxml_context *xml_ctx, const char **data, const char **namespace);
+
+/**
+ * @brief Parse import element
+ *
+ * @param[in] xml_ctx Xml context.
+ * @param[in] module_prefix Prefix of the module to check prefix collisions.
+ * @param[in, out] data Dta to read from.
+ *
+ */
+LY_ERR yin_parse_import(struct lyxml_context *xml_ctx, const char *module_prefix, const char **data, struct lysp_import **imports);
#endif /* LY_PARSER_YIN_H_*/