initial commit
diff --git a/src/libyang.h b/src/libyang.h
new file mode 100644
index 0000000..ca649c3
--- /dev/null
+++ b/src/libyang.h
@@ -0,0 +1,37 @@
+/**
+ * @file libyang.h
+ * @author Radek Krejci <rkrejci@cesnet.cz>
+ * @brief The main libyang public header.
+ *
+ * Copyright (c) 2015 - 2018 CESNET, z.s.p.o.
+ *
+ * This source code is licensed under BSD 3-Clause License (the "License").
+ * You may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://opensource.org/licenses/BSD-3-Clause
+ */
+
+#ifndef LY_LIBYANG_H_
+#define LY_LIBYANG_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * @struct ly_ctx
+ * @brief libyang context handler.
+ */
+struct ly_ctx;
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#include "log.h"
+#include "set.h"
+#include "dict.h"
+
+#endif /* LY_LIBYANG_H_ */