blob: ca649c37ba3b70dc5898cbecabb1be5d3b8e85a4 [file] [log] [blame]
/**
* @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_ */