libyang  6.3.1
libyang is YANG data modelling language parser and toolkit written (and providing API) in C.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
libyang.h
Go to the documentation of this file.
1 
16 #ifndef LY_LIBYANG_H_
17 #define LY_LIBYANG_H_
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
23 #include "ly_config.h"
24 
25 #include "context.h"
26 #include "dict.h"
27 #include "in.h"
28 #include "log.h"
29 #include "ly_array.h"
30 #include "metadata.h"
31 #include "out.h"
32 #include "parser_data.h"
33 #include "parser_schema.h"
34 #include "printer_data.h"
35 #include "printer_schema.h"
36 #include "set.h"
37 #include "tree_data.h"
38 #include "tree_schema.h"
39 #include "utils.h"
40 
44 #define ly_strerrcode ly_strerr
45 #define ly_last_errmsg ly_last_logmsg
46 #define ly_errcode(ctx) (ly_err_last(ctx) ? ly_err_last(ctx)->err : 0)
47 #define ly_errmsg(ctx) (ly_err_last(ctx) ? ly_err_last(ctx)->msg : NULL)
48 #define ly_errpath(ctx) (ly_err_last(ctx) ? (ly_err_last(ctx)->data_path ? ly_err_last(ctx)->data_path : ly_err_last(ctx)->schema_path) : NULL)
49 #define ly_vecode(ctx) (ly_err_last(ctx) ? ly_err_last(ctx)->vecode : 0)
50 
177 #ifdef __cplusplus
178 }
179 #endif
180 
181 #endif /* LY_LIBYANG_H_ */
Schema printers for libyang.
Data printers for libyang.
internal context structures and functions
Generic set structure and manipulation routines.
Schema parsers for libyang.
libyang output structures and functions
ietf-yang-metadata API
libyang dictionary
libyang representation of YANG schema trees.
libyang input structures and functions
Utilities and generic types of libyang.
Data parsers for libyang.
libyang representation of YANG data trees.
libyang sized array API.
Logger manipulation routines and error definitions.