├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ ├── cifuzz.yml │ └── devel-push.yml ├── .mailmap ├── CMakeLists.txt ├── CMakeModules ├── ABICheck.cmake ├── FindCMocka.cmake ├── FindPCRE2.cmake ├── FindUncrustify.cmake ├── FindXXHash.cmake ├── GenCoverage.cmake ├── GenDoc.cmake ├── SourceFormat.cmake ├── UseCompat.cmake └── uninstall.cmake ├── CONTRIBUTING.md ├── Doxyfile.in ├── FindLibYANG.cmake ├── LICENSE ├── README.md ├── SECURITY.md ├── codecov.yml ├── compat ├── check_includes.sh ├── compat.c ├── compat.h.in ├── posix-shims │ ├── libgen.h │ ├── strings.h │ └── unistd.h └── strptime.c ├── distro ├── README.md ├── config │ └── apkg.toml ├── pkg │ ├── deb │ │ ├── README.Debian │ │ ├── README.source │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── gbp.conf │ │ ├── libyang-dev.install │ │ ├── libyang-modules.install │ │ ├── libyang-tools.examples │ │ ├── libyang-tools.install │ │ ├── libyang4.install │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ ├── tests │ │ │ ├── control │ │ │ └── yanglint │ │ └── watch │ └── rpm │ │ └── libyang.spec ├── scripts │ ├── make-archive.sh │ └── upstream-version.sh └── tests │ ├── control │ ├── test-pkg-config.sh │ └── test-yanglint.sh ├── doc ├── build.dox ├── cesnet-style.css ├── compat_report_1_2.html ├── compat_report_2_3.html ├── compat_report_3_4.html ├── footer.html ├── logo.png ├── transition_1_2.dox ├── transition_2_3.dox └── transition_3_4.dox ├── libyang.pc.in ├── modules ├── default@2025-06-18.h ├── default@2025-06-18.yang ├── ietf-datastores@2018-02-14.h ├── ietf-datastores@2018-02-14.yang ├── ietf-inet-types@2013-07-15.h ├── ietf-inet-types@2013-07-15.yang ├── ietf-yang-library@2019-01-04.h ├── ietf-yang-library@2019-01-04.yang ├── ietf-yang-metadata@2016-08-05.h ├── ietf-yang-metadata@2016-08-05.yang ├── ietf-yang-schema-mount@2019-01-14.h ├── ietf-yang-schema-mount@2019-01-14.yang ├── ietf-yang-structure-ext@2020-06-17.h ├── ietf-yang-structure-ext@2020-06-17.yang ├── ietf-yang-types@2013-07-15.h ├── ietf-yang-types@2013-07-15.yang ├── yang@2025-01-29.h └── yang@2025-01-29.yang ├── src ├── context.c ├── context.h ├── dict.c ├── dict.h ├── diff.c ├── diff.h ├── hash_table.c ├── hash_table.h ├── hash_table_internal.h ├── in.c ├── in.h ├── in_internal.h ├── json.c ├── json.h ├── libyang.h ├── log.c ├── log.h ├── ly_common.c ├── ly_common.h ├── ly_config.h.in ├── lyb.c ├── lyb.h ├── out.c ├── out.h ├── out_internal.h ├── parser_common.c ├── parser_data.h ├── parser_internal.h ├── parser_json.c ├── parser_lyb.c ├── parser_schema.h ├── parser_xml.c ├── parser_yang.c ├── parser_yin.c ├── path.c ├── path.h ├── plugins.c ├── plugins.h ├── plugins_exts.c ├── plugins_exts.h ├── plugins_exts │ ├── metadata.c │ ├── metadata.h │ ├── nacm.c │ ├── schema_mount.c │ ├── structure.c │ └── yangdata.c ├── plugins_internal.h ├── plugins_types.c ├── plugins_types.h ├── plugins_types │ ├── binary.c │ ├── bits.c │ ├── boolean.c │ ├── date_and_time.c │ ├── decimal64.c │ ├── empty.c │ ├── enumeration.c │ ├── hex_string.c │ ├── identityref.c │ ├── instanceid.c │ ├── instanceid_keys.c │ ├── integer.c │ ├── ipv4_address.c │ ├── ipv4_address_no_zone.c │ ├── ipv4_prefix.c │ ├── ipv6_address.c │ ├── ipv6_address_no_zone.c │ ├── ipv6_prefix.c │ ├── leafref.c │ ├── lyds_tree.c │ ├── node_instanceid.c │ ├── string.c │ ├── time_period.c │ ├── union.c │ └── xpath1.0.c ├── printer_context.c ├── printer_data.c ├── printer_data.h ├── printer_internal.h ├── printer_json.c ├── printer_lyb.c ├── printer_schema.c ├── printer_schema.h ├── printer_tree.c ├── printer_xml.c ├── printer_yang.c ├── printer_yin.c ├── schema_compile.c ├── schema_compile.h ├── schema_compile_amend.c ├── schema_compile_amend.h ├── schema_compile_node.c ├── schema_compile_node.h ├── schema_features.c ├── schema_features.h ├── set.c ├── set.h ├── tree.h ├── tree_data.c ├── tree_data.h ├── tree_data_common.c ├── tree_data_free.c ├── tree_data_hash.c ├── tree_data_internal.h ├── tree_data_new.c ├── tree_data_sorted.c ├── tree_data_sorted.h ├── tree_edit.h ├── tree_schema.c ├── tree_schema.h ├── tree_schema_common.c ├── tree_schema_free.c ├── tree_schema_free.h ├── tree_schema_internal.h ├── validation.c ├── validation.h ├── version.h.in ├── xml.c ├── xml.h ├── xpath.c └── xpath.h ├── tests ├── CMakeLists.txt ├── cstr.sh ├── fuzz │ ├── CMakeLists.txt │ ├── README.md │ ├── corpus │ │ ├── lyd_parse_mem_json │ │ │ ├── pull11438 │ │ │ ├── pull1203 │ │ │ ├── pull1269 │ │ │ ├── pull1269_2 │ │ │ ├── pull1280 │ │ │ ├── pull1347_number │ │ │ ├── pull1347_strings │ │ │ ├── pull1348 │ │ │ ├── pull1460 │ │ │ ├── pull1460_2 │ │ │ ├── pull1571 │ │ │ ├── pull1585 │ │ │ ├── pull1626 │ │ │ ├── pull1693 │ │ │ ├── pull1696_1 │ │ │ └── pull1696_2 │ │ ├── lyd_parse_mem_xml │ │ │ ├── issue1074 │ │ │ ├── issue1131 │ │ │ ├── issue1132 │ │ │ ├── issue1132_2 │ │ │ ├── issue1132_3 │ │ │ ├── pull1129_1 │ │ │ ├── pull1129_2 │ │ │ ├── pull1529 │ │ │ ├── pull1537 │ │ │ └── pull1562 │ │ └── lys_parse_mem │ │ │ ├── issue1004.yang │ │ │ ├── issue1025.yang │ │ │ ├── issue1027.yang │ │ │ ├── issue1040.yang │ │ │ ├── issue1041.yang │ │ │ ├── issue1042_base-yang-types.yang │ │ │ ├── issue1042_test-type-provider-b.yang │ │ │ ├── issue1042_test-type-provider.yang │ │ │ ├── issue1043.yang │ │ │ ├── issue722.yang │ │ │ ├── issue723.yang │ │ │ ├── issue724.yang │ │ │ ├── issue728.yang │ │ │ ├── issue733.yang │ │ │ ├── issue734.yang │ │ │ ├── issue735.yang │ │ │ ├── issue739.yang │ │ │ ├── issue740.yang │ │ │ ├── issue741.yang │ │ │ ├── issue742.yang │ │ │ ├── issue769.yang │ │ │ ├── issue771.yang │ │ │ ├── issue772.yang │ │ │ ├── issue773.yang │ │ │ ├── issue774.yang │ │ │ ├── issue777.yang │ │ │ ├── issue780.yang │ │ │ ├── issue788.yang │ │ │ ├── issue789.yang │ │ │ ├── issue791.yang │ │ │ ├── issue791_2.yang │ │ │ ├── issue795.yang │ │ │ ├── issue804.yang │ │ │ ├── issue805.yang │ │ │ ├── issue807.yang │ │ │ ├── issue826.yang │ │ │ ├── issue827.yang │ │ │ ├── issue872.yang │ │ │ ├── issue874.yang │ │ │ ├── issue970.yang │ │ │ ├── issue973.yang │ │ │ ├── issue975.yang │ │ │ ├── issue976_a.yang │ │ │ ├── issue976_b.yang │ │ │ ├── issue979_a.yang │ │ │ ├── issue979_b.yang │ │ │ ├── pull1524.yang │ │ │ ├── pull1568.yang │ │ │ ├── pull1592.yang │ │ │ ├── pull958.yang │ │ │ └── pull960.yang │ ├── fuzz_regression_test.c │ ├── lyd_parse_mem_json.c │ ├── lyd_parse_mem_xml.c │ ├── lys_parse_mem.c │ ├── main.c │ └── yang_parse_module.c ├── ld.supp ├── modules │ └── yang │ │ ├── iana-if-type@2014-05-08.yang │ │ ├── ietf-interfaces@2014-05-08.yang │ │ ├── ietf-ip@2014-06-16.yang │ │ ├── ietf-netconf-acm@2018-02-14.yang │ │ ├── ietf-netconf-nmda@2019-01-07.yang │ │ ├── ietf-netconf-with-defaults@2011-06-01.yang │ │ ├── ietf-netconf@2011-06-01.yang │ │ ├── ietf-origin@2018-02-14.yang │ │ ├── ietf-restconf@2017-01-26.yang │ │ ├── mount.yang │ │ ├── notifications@2008-07-14.yang │ │ ├── sm-extension.yang │ │ ├── sm-mod.yang │ │ ├── sm-modp.yang │ │ ├── sm-rpcnotif.yang │ │ └── sm.yang ├── perf │ ├── CMakeLists.txt │ ├── perf.c │ └── perf.yang ├── plugins │ ├── CMakeLists.txt │ ├── invalid.c │ └── simple.c ├── style │ ├── CMakeLists.txt │ └── cpp_compat.c ├── tests_config.h.in ├── tool_i.tcl ├── tool_ni.tcl ├── utests │ ├── CMakeLists.txt │ ├── basic │ │ ├── test_common.c │ │ ├── test_context.c │ │ ├── test_hash_table.c │ │ ├── test_inout.c │ │ ├── test_json.c │ │ ├── test_plugins.c │ │ ├── test_set.c │ │ ├── test_xml.c │ │ ├── test_xpath.c │ │ └── test_yanglib.c │ ├── data │ │ ├── test_diff.c │ │ ├── test_lyb.c │ │ ├── test_merge.c │ │ ├── test_new.c │ │ ├── test_parser_json.c │ │ ├── test_parser_xml.c │ │ ├── test_printer_json.c │ │ ├── test_printer_xml.c │ │ ├── test_tree_data.c │ │ ├── test_tree_data_sorted.c │ │ └── test_validation.c │ ├── extensions │ │ ├── test_metadata.c │ │ ├── test_nacm.c │ │ ├── test_schema_mount.c │ │ ├── test_structure.c │ │ └── test_yangdata.c │ ├── node │ │ └── list.c │ ├── restriction │ │ ├── test_pattern.c │ │ └── test_range.c │ ├── schema │ │ ├── test_printer_tree.c │ │ ├── test_schema.c │ │ ├── test_tree_schema_compile.c │ │ ├── test_yang.c │ │ └── test_yin.c │ ├── types │ │ ├── binary.c │ │ ├── bits.c │ │ ├── boolean.c │ │ ├── decimal64.c │ │ ├── empty.c │ │ ├── enumeration.c │ │ ├── identityref.c │ │ ├── inet_types.c │ │ ├── instanceid.c │ │ ├── instanceid_keys.c │ │ ├── int16.c │ │ ├── int32.c │ │ ├── int64.c │ │ ├── int8.c │ │ ├── leafref.c │ │ ├── string.c │ │ ├── uint16.c │ │ ├── uint32.c │ │ ├── uint64.c │ │ ├── uint8.c │ │ ├── union.c │ │ └── yang_types.c │ └── utests.h ├── yanglint │ ├── CMakeLists.txt │ ├── README.md │ ├── common.tcl │ ├── data │ │ ├── modaction.xml │ │ ├── modaction_ds.xml │ │ ├── modaction_nc.xml │ │ ├── modaction_reply.xml │ │ ├── modaction_reply_nc.xml │ │ ├── modconfig.xml │ │ ├── modconfig2.xml │ │ ├── modconfig_ctx.xml │ │ ├── moddatanodes.xml │ │ ├── moddefault.xml │ │ ├── modimp_type_ctx.xml │ │ ├── modleaf.djson │ │ ├── modleaf.dxml │ │ ├── modleaf.xml │ │ ├── modleafref.xml │ │ ├── modleafref2.xml │ │ ├── modmandatory.xml │ │ ├── modmandatory_invalid.xml │ │ ├── modmerge.xml │ │ ├── modmerge2.xml │ │ ├── modmerge3.xml │ │ ├── modnotif.xml │ │ ├── modnotif2.xml │ │ ├── modnotif2_nc.xml │ │ ├── modnotif_ds.xml │ │ ├── modnotif_nc.xml │ │ ├── modoper_leafref_action.xml │ │ ├── modoper_leafref_action_reply.xml │ │ ├── modoper_leafref_ds.xml │ │ ├── modoper_leafref_notif.xml │ │ ├── modoper_leafref_notif2.xml │ │ ├── modoper_leafref_notif_err.xml │ │ ├── modoper_leafref_rpc.xml │ │ ├── modoper_leafref_rpc_reply.xml │ │ ├── modrpc.xml │ │ ├── modrpc_nc.xml │ │ ├── modrpc_reply.xml │ │ ├── modrpc_reply_nc.xml │ │ ├── modsm.xml │ │ ├── modsm2.xml │ │ ├── modsm_ctx_ext.xml │ │ └── modsm_ctx_main.xml │ ├── interactive │ │ ├── add.test │ │ ├── all.tcl │ │ ├── clear.test │ │ ├── completion.test │ │ ├── data_default.test │ │ ├── data_format.test │ │ ├── data_in_format.test │ │ ├── data_merge.test │ │ ├── data_not_strict.test │ │ ├── data_operational.test │ │ ├── data_present.test │ │ ├── data_type.test │ │ ├── data_xpath.test │ │ ├── extdata.test │ │ ├── feature.test │ │ ├── list.test │ │ ├── load.test │ │ ├── ly.tcl │ │ ├── modcwd.yang │ │ ├── print.test │ │ └── searchpath.test │ ├── modules │ │ ├── ietf-interfaces.yang │ │ ├── ietf-ip.yang │ │ ├── ietf-netconf-acm.yang │ │ ├── ietf-netconf-with-defaults@2011-06-01.yang │ │ ├── ietf-netconf@2011-06-01.yang │ │ ├── modaction.yang │ │ ├── modconfig-augment.yang │ │ ├── modconfig.yang │ │ ├── moddatanodes.yang │ │ ├── moddefault.yang │ │ ├── modextleafref.yang │ │ ├── modfeature.yang │ │ ├── modimp-path.yang │ │ ├── modimp-type.yang │ │ ├── modinclude.yang │ │ ├── modleaf.yang │ │ ├── modleafref.yang │ │ ├── modmandatory.yang │ │ ├── modmerge.yang │ │ ├── modmust.yang │ │ ├── modnotif.yang │ │ ├── modoper-leafref.yang │ │ ├── modpath.yang │ │ ├── modrpc.yang │ │ ├── modsm-augment.yang │ │ ├── modsm.yang │ │ ├── modsub.yang │ │ └── modtypedef.yang │ └── non-interactive │ │ ├── all.tcl │ │ ├── data_default.test │ │ ├── data_in_format.test │ │ ├── data_merge.test │ │ ├── data_not_strict.test │ │ ├── data_operational.test │ │ ├── data_present.test │ │ ├── data_type.test │ │ ├── data_xpath.test │ │ ├── disabled_searchdir.test │ │ ├── ext_data.test │ │ ├── extended_leafref.test │ │ ├── format.test │ │ ├── list.test │ │ ├── ly.tcl │ │ ├── make_implemented.test │ │ ├── modcwd.yang │ │ ├── path.test │ │ └── yang_library_file.test └── yangre │ ├── CMakeLists.txt │ ├── all.tcl │ ├── arg.test │ ├── file.test │ ├── files │ ├── empty.txt │ ├── empty_str.txt │ ├── empty_str_err.txt │ ├── one_pattern.txt │ ├── two_patterns.txt │ ├── two_patterns_err.txt │ ├── two_patterns_invert_match.txt │ └── two_patterns_invert_match_err.txt │ ├── invert_match.test │ ├── ly.tcl │ └── pattern.test ├── tools ├── CMakeLists.txt ├── config.h.in ├── lint │ ├── CMakeLists.txt │ ├── cmd.c │ ├── cmd.h │ ├── cmd_add.c │ ├── cmd_clear.c │ ├── cmd_data.c │ ├── cmd_debug.c │ ├── cmd_extdata.c │ ├── cmd_feature.c │ ├── cmd_help.c │ ├── cmd_list.c │ ├── cmd_load.c │ ├── cmd_print.c │ ├── cmd_searchpath.c │ ├── cmd_verb.c │ ├── common.c │ ├── common.h │ ├── completion.c │ ├── completion.h │ ├── configuration.c │ ├── configuration.h │ ├── examples │ │ ├── README.md │ │ ├── action-reply.xml │ │ ├── action.xml │ │ ├── config-acm.xml │ │ ├── config-missing-key.xml │ │ ├── config-unknown-element.xml │ │ ├── data-acm.xml │ │ ├── data-ip.xml │ │ ├── data-malformed-xml.xml │ │ ├── data-malformed-xml2.xml │ │ ├── data-missing-key.xml │ │ ├── data-out-of-range-value.xml │ │ ├── datastore.xml │ │ ├── example-jukebox.yang │ │ ├── ext-data.xml │ │ ├── iana-if-type.yang │ │ ├── ietf-interfaces.yang │ │ ├── ietf-ip.yang │ │ ├── ietf-netconf-acm-when.yang │ │ ├── ietf-netconf-acm-when.yin │ │ ├── ietf-netconf-acm-when2.yin │ │ ├── ietf-netconf-acm.yang │ │ ├── ietf-restconf@2017-01-26.yang │ │ ├── module1.yang │ │ ├── module1b.yang │ │ ├── module2.yang │ │ ├── module2.yin │ │ ├── module3.yang │ │ ├── module4.yang │ │ ├── nested-notification.xml │ │ ├── notification.xml │ │ ├── operational-data.xml │ │ ├── rpc-reply.xml │ │ ├── rpc.xml │ │ ├── sm-context-extension.xml │ │ ├── sm-context-main.xml │ │ ├── sm-data.xml │ │ ├── sm-extension.yang │ │ ├── sm-main.yang │ │ └── sm-mod.yang │ ├── linenoise │ │ ├── LICENSE │ │ ├── linenoise.c │ │ ├── linenoise.h │ │ ├── utf8.c │ │ └── utf8.h │ ├── main.c │ ├── main_ni.c │ ├── main_ni_only.c │ ├── yanglint.1 │ ├── yl_opt.c │ ├── yl_opt.h │ ├── yl_schema_features.c │ └── yl_schema_features.h └── re │ ├── CMakeLists.txt │ ├── main.c │ └── yangre.1 └── uncrustify.cfg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cifuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/.github/workflows/cifuzz.yml -------------------------------------------------------------------------------- /.github/workflows/devel-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/.github/workflows/devel-push.yml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/.mailmap -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/ABICheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/CMakeModules/ABICheck.cmake -------------------------------------------------------------------------------- /CMakeModules/FindCMocka.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/CMakeModules/FindCMocka.cmake -------------------------------------------------------------------------------- /CMakeModules/FindPCRE2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/CMakeModules/FindPCRE2.cmake -------------------------------------------------------------------------------- /CMakeModules/FindUncrustify.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/CMakeModules/FindUncrustify.cmake -------------------------------------------------------------------------------- /CMakeModules/FindXXHash.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/CMakeModules/FindXXHash.cmake -------------------------------------------------------------------------------- /CMakeModules/GenCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/CMakeModules/GenCoverage.cmake -------------------------------------------------------------------------------- /CMakeModules/GenDoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/CMakeModules/GenDoc.cmake -------------------------------------------------------------------------------- /CMakeModules/SourceFormat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/CMakeModules/SourceFormat.cmake -------------------------------------------------------------------------------- /CMakeModules/UseCompat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/CMakeModules/UseCompat.cmake -------------------------------------------------------------------------------- /CMakeModules/uninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/CMakeModules/uninstall.cmake -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /FindLibYANG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/FindLibYANG.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/SECURITY.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/codecov.yml -------------------------------------------------------------------------------- /compat/check_includes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/compat/check_includes.sh -------------------------------------------------------------------------------- /compat/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/compat/compat.c -------------------------------------------------------------------------------- /compat/compat.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/compat/compat.h.in -------------------------------------------------------------------------------- /compat/posix-shims/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/compat/posix-shims/libgen.h -------------------------------------------------------------------------------- /compat/posix-shims/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/compat/posix-shims/strings.h -------------------------------------------------------------------------------- /compat/posix-shims/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/compat/posix-shims/unistd.h -------------------------------------------------------------------------------- /compat/strptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/compat/strptime.c -------------------------------------------------------------------------------- /distro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/README.md -------------------------------------------------------------------------------- /distro/config/apkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/config/apkg.toml -------------------------------------------------------------------------------- /distro/pkg/deb/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/README.Debian -------------------------------------------------------------------------------- /distro/pkg/deb/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/README.source -------------------------------------------------------------------------------- /distro/pkg/deb/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/changelog -------------------------------------------------------------------------------- /distro/pkg/deb/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /distro/pkg/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/control -------------------------------------------------------------------------------- /distro/pkg/deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/copyright -------------------------------------------------------------------------------- /distro/pkg/deb/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/gbp.conf -------------------------------------------------------------------------------- /distro/pkg/deb/libyang-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/libyang-dev.install -------------------------------------------------------------------------------- /distro/pkg/deb/libyang-modules.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/libyang-modules.install -------------------------------------------------------------------------------- /distro/pkg/deb/libyang-tools.examples: -------------------------------------------------------------------------------- 1 | tools/lint/examples/* 2 | -------------------------------------------------------------------------------- /distro/pkg/deb/libyang-tools.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/libyang-tools.install -------------------------------------------------------------------------------- /distro/pkg/deb/libyang4.install: -------------------------------------------------------------------------------- 1 | usr/lib/*/*.so.* 2 | -------------------------------------------------------------------------------- /distro/pkg/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/rules -------------------------------------------------------------------------------- /distro/pkg/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /distro/pkg/deb/tests/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/tests/control -------------------------------------------------------------------------------- /distro/pkg/deb/tests/yanglint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/tests/yanglint -------------------------------------------------------------------------------- /distro/pkg/deb/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/deb/watch -------------------------------------------------------------------------------- /distro/pkg/rpm/libyang.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/pkg/rpm/libyang.spec -------------------------------------------------------------------------------- /distro/scripts/make-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/scripts/make-archive.sh -------------------------------------------------------------------------------- /distro/scripts/upstream-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/scripts/upstream-version.sh -------------------------------------------------------------------------------- /distro/tests/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/tests/control -------------------------------------------------------------------------------- /distro/tests/test-pkg-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/tests/test-pkg-config.sh -------------------------------------------------------------------------------- /distro/tests/test-yanglint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/distro/tests/test-yanglint.sh -------------------------------------------------------------------------------- /doc/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/doc/build.dox -------------------------------------------------------------------------------- /doc/cesnet-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/doc/cesnet-style.css -------------------------------------------------------------------------------- /doc/compat_report_1_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/doc/compat_report_1_2.html -------------------------------------------------------------------------------- /doc/compat_report_2_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/doc/compat_report_2_3.html -------------------------------------------------------------------------------- /doc/compat_report_3_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/doc/compat_report_3_4.html -------------------------------------------------------------------------------- /doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/doc/footer.html -------------------------------------------------------------------------------- /doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/doc/logo.png -------------------------------------------------------------------------------- /doc/transition_1_2.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/doc/transition_1_2.dox -------------------------------------------------------------------------------- /doc/transition_2_3.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/doc/transition_2_3.dox -------------------------------------------------------------------------------- /doc/transition_3_4.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/doc/transition_3_4.dox -------------------------------------------------------------------------------- /libyang.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/libyang.pc.in -------------------------------------------------------------------------------- /modules/default@2025-06-18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/default@2025-06-18.h -------------------------------------------------------------------------------- /modules/default@2025-06-18.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/default@2025-06-18.yang -------------------------------------------------------------------------------- /modules/ietf-datastores@2018-02-14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-datastores@2018-02-14.h -------------------------------------------------------------------------------- /modules/ietf-datastores@2018-02-14.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-datastores@2018-02-14.yang -------------------------------------------------------------------------------- /modules/ietf-inet-types@2013-07-15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-inet-types@2013-07-15.h -------------------------------------------------------------------------------- /modules/ietf-inet-types@2013-07-15.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-inet-types@2013-07-15.yang -------------------------------------------------------------------------------- /modules/ietf-yang-library@2019-01-04.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-yang-library@2019-01-04.h -------------------------------------------------------------------------------- /modules/ietf-yang-library@2019-01-04.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-yang-library@2019-01-04.yang -------------------------------------------------------------------------------- /modules/ietf-yang-metadata@2016-08-05.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-yang-metadata@2016-08-05.h -------------------------------------------------------------------------------- /modules/ietf-yang-metadata@2016-08-05.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-yang-metadata@2016-08-05.yang -------------------------------------------------------------------------------- /modules/ietf-yang-schema-mount@2019-01-14.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-yang-schema-mount@2019-01-14.h -------------------------------------------------------------------------------- /modules/ietf-yang-schema-mount@2019-01-14.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-yang-schema-mount@2019-01-14.yang -------------------------------------------------------------------------------- /modules/ietf-yang-structure-ext@2020-06-17.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-yang-structure-ext@2020-06-17.h -------------------------------------------------------------------------------- /modules/ietf-yang-structure-ext@2020-06-17.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-yang-structure-ext@2020-06-17.yang -------------------------------------------------------------------------------- /modules/ietf-yang-types@2013-07-15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-yang-types@2013-07-15.h -------------------------------------------------------------------------------- /modules/ietf-yang-types@2013-07-15.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/ietf-yang-types@2013-07-15.yang -------------------------------------------------------------------------------- /modules/yang@2025-01-29.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/yang@2025-01-29.h -------------------------------------------------------------------------------- /modules/yang@2025-01-29.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/modules/yang@2025-01-29.yang -------------------------------------------------------------------------------- /src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/context.c -------------------------------------------------------------------------------- /src/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/context.h -------------------------------------------------------------------------------- /src/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/dict.c -------------------------------------------------------------------------------- /src/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/dict.h -------------------------------------------------------------------------------- /src/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/diff.c -------------------------------------------------------------------------------- /src/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/diff.h -------------------------------------------------------------------------------- /src/hash_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/hash_table.c -------------------------------------------------------------------------------- /src/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/hash_table.h -------------------------------------------------------------------------------- /src/hash_table_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/hash_table_internal.h -------------------------------------------------------------------------------- /src/in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/in.c -------------------------------------------------------------------------------- /src/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/in.h -------------------------------------------------------------------------------- /src/in_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/in_internal.h -------------------------------------------------------------------------------- /src/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/json.c -------------------------------------------------------------------------------- /src/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/json.h -------------------------------------------------------------------------------- /src/libyang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/libyang.h -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/log.c -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/log.h -------------------------------------------------------------------------------- /src/ly_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/ly_common.c -------------------------------------------------------------------------------- /src/ly_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/ly_common.h -------------------------------------------------------------------------------- /src/ly_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/ly_config.h.in -------------------------------------------------------------------------------- /src/lyb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/lyb.c -------------------------------------------------------------------------------- /src/lyb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/lyb.h -------------------------------------------------------------------------------- /src/out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/out.c -------------------------------------------------------------------------------- /src/out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/out.h -------------------------------------------------------------------------------- /src/out_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/out_internal.h -------------------------------------------------------------------------------- /src/parser_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/parser_common.c -------------------------------------------------------------------------------- /src/parser_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/parser_data.h -------------------------------------------------------------------------------- /src/parser_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/parser_internal.h -------------------------------------------------------------------------------- /src/parser_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/parser_json.c -------------------------------------------------------------------------------- /src/parser_lyb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/parser_lyb.c -------------------------------------------------------------------------------- /src/parser_schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/parser_schema.h -------------------------------------------------------------------------------- /src/parser_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/parser_xml.c -------------------------------------------------------------------------------- /src/parser_yang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/parser_yang.c -------------------------------------------------------------------------------- /src/parser_yin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/parser_yin.c -------------------------------------------------------------------------------- /src/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/path.c -------------------------------------------------------------------------------- /src/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/path.h -------------------------------------------------------------------------------- /src/plugins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins.c -------------------------------------------------------------------------------- /src/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins.h -------------------------------------------------------------------------------- /src/plugins_exts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_exts.c -------------------------------------------------------------------------------- /src/plugins_exts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_exts.h -------------------------------------------------------------------------------- /src/plugins_exts/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_exts/metadata.c -------------------------------------------------------------------------------- /src/plugins_exts/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_exts/metadata.h -------------------------------------------------------------------------------- /src/plugins_exts/nacm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_exts/nacm.c -------------------------------------------------------------------------------- /src/plugins_exts/schema_mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_exts/schema_mount.c -------------------------------------------------------------------------------- /src/plugins_exts/structure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_exts/structure.c -------------------------------------------------------------------------------- /src/plugins_exts/yangdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_exts/yangdata.c -------------------------------------------------------------------------------- /src/plugins_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_internal.h -------------------------------------------------------------------------------- /src/plugins_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types.c -------------------------------------------------------------------------------- /src/plugins_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types.h -------------------------------------------------------------------------------- /src/plugins_types/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/binary.c -------------------------------------------------------------------------------- /src/plugins_types/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/bits.c -------------------------------------------------------------------------------- /src/plugins_types/boolean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/boolean.c -------------------------------------------------------------------------------- /src/plugins_types/date_and_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/date_and_time.c -------------------------------------------------------------------------------- /src/plugins_types/decimal64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/decimal64.c -------------------------------------------------------------------------------- /src/plugins_types/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/empty.c -------------------------------------------------------------------------------- /src/plugins_types/enumeration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/enumeration.c -------------------------------------------------------------------------------- /src/plugins_types/hex_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/hex_string.c -------------------------------------------------------------------------------- /src/plugins_types/identityref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/identityref.c -------------------------------------------------------------------------------- /src/plugins_types/instanceid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/instanceid.c -------------------------------------------------------------------------------- /src/plugins_types/instanceid_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/instanceid_keys.c -------------------------------------------------------------------------------- /src/plugins_types/integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/integer.c -------------------------------------------------------------------------------- /src/plugins_types/ipv4_address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/ipv4_address.c -------------------------------------------------------------------------------- /src/plugins_types/ipv4_address_no_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/ipv4_address_no_zone.c -------------------------------------------------------------------------------- /src/plugins_types/ipv4_prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/ipv4_prefix.c -------------------------------------------------------------------------------- /src/plugins_types/ipv6_address.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/ipv6_address.c -------------------------------------------------------------------------------- /src/plugins_types/ipv6_address_no_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/ipv6_address_no_zone.c -------------------------------------------------------------------------------- /src/plugins_types/ipv6_prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/ipv6_prefix.c -------------------------------------------------------------------------------- /src/plugins_types/leafref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/leafref.c -------------------------------------------------------------------------------- /src/plugins_types/lyds_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/lyds_tree.c -------------------------------------------------------------------------------- /src/plugins_types/node_instanceid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/node_instanceid.c -------------------------------------------------------------------------------- /src/plugins_types/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/string.c -------------------------------------------------------------------------------- /src/plugins_types/time_period.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/time_period.c -------------------------------------------------------------------------------- /src/plugins_types/union.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/union.c -------------------------------------------------------------------------------- /src/plugins_types/xpath1.0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/plugins_types/xpath1.0.c -------------------------------------------------------------------------------- /src/printer_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/printer_context.c -------------------------------------------------------------------------------- /src/printer_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/printer_data.c -------------------------------------------------------------------------------- /src/printer_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/printer_data.h -------------------------------------------------------------------------------- /src/printer_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/printer_internal.h -------------------------------------------------------------------------------- /src/printer_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/printer_json.c -------------------------------------------------------------------------------- /src/printer_lyb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/printer_lyb.c -------------------------------------------------------------------------------- /src/printer_schema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/printer_schema.c -------------------------------------------------------------------------------- /src/printer_schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/printer_schema.h -------------------------------------------------------------------------------- /src/printer_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/printer_tree.c -------------------------------------------------------------------------------- /src/printer_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/printer_xml.c -------------------------------------------------------------------------------- /src/printer_yang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/printer_yang.c -------------------------------------------------------------------------------- /src/printer_yin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/printer_yin.c -------------------------------------------------------------------------------- /src/schema_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/schema_compile.c -------------------------------------------------------------------------------- /src/schema_compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/schema_compile.h -------------------------------------------------------------------------------- /src/schema_compile_amend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/schema_compile_amend.c -------------------------------------------------------------------------------- /src/schema_compile_amend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/schema_compile_amend.h -------------------------------------------------------------------------------- /src/schema_compile_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/schema_compile_node.c -------------------------------------------------------------------------------- /src/schema_compile_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/schema_compile_node.h -------------------------------------------------------------------------------- /src/schema_features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/schema_features.c -------------------------------------------------------------------------------- /src/schema_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/schema_features.h -------------------------------------------------------------------------------- /src/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/set.c -------------------------------------------------------------------------------- /src/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/set.h -------------------------------------------------------------------------------- /src/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree.h -------------------------------------------------------------------------------- /src/tree_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_data.c -------------------------------------------------------------------------------- /src/tree_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_data.h -------------------------------------------------------------------------------- /src/tree_data_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_data_common.c -------------------------------------------------------------------------------- /src/tree_data_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_data_free.c -------------------------------------------------------------------------------- /src/tree_data_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_data_hash.c -------------------------------------------------------------------------------- /src/tree_data_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_data_internal.h -------------------------------------------------------------------------------- /src/tree_data_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_data_new.c -------------------------------------------------------------------------------- /src/tree_data_sorted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_data_sorted.c -------------------------------------------------------------------------------- /src/tree_data_sorted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_data_sorted.h -------------------------------------------------------------------------------- /src/tree_edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_edit.h -------------------------------------------------------------------------------- /src/tree_schema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_schema.c -------------------------------------------------------------------------------- /src/tree_schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_schema.h -------------------------------------------------------------------------------- /src/tree_schema_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_schema_common.c -------------------------------------------------------------------------------- /src/tree_schema_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_schema_free.c -------------------------------------------------------------------------------- /src/tree_schema_free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_schema_free.h -------------------------------------------------------------------------------- /src/tree_schema_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/tree_schema_internal.h -------------------------------------------------------------------------------- /src/validation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/validation.c -------------------------------------------------------------------------------- /src/validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/validation.h -------------------------------------------------------------------------------- /src/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/version.h.in -------------------------------------------------------------------------------- /src/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/xml.c -------------------------------------------------------------------------------- /src/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/xml.h -------------------------------------------------------------------------------- /src/xpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/xpath.c -------------------------------------------------------------------------------- /src/xpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/src/xpath.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cstr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/cstr.sh -------------------------------------------------------------------------------- /tests/fuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/CMakeLists.txt -------------------------------------------------------------------------------- /tests/fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/README.md -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull11438: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_json/pull11438 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1203: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_json/pull1203 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1269: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1269_2: -------------------------------------------------------------------------------- 1 | [[], []] 2 | -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1280: -------------------------------------------------------------------------------- 1 | "\u1 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1347_number: -------------------------------------------------------------------------------- 1 | {"200 -11-10T23:00:00Z": 1E+2} 2 | -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1347_strings: -------------------------------------------------------------------------------- 1 | {"200 -11-10T23:00:00Z": "hello w\rld"}, 2 | -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1348: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_json/pull1348 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1460: -------------------------------------------------------------------------------- 1 | "viøonisionp\u\ -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1460_2: -------------------------------------------------------------------------------- 1 | "viøonisionp\uGAAA" 2 | -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1571: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_json/pull1571 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1585: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_json/pull1585 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1626: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_json/pull1626 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1693: -------------------------------------------------------------------------------- 1 | {"types:cont":{"":"","":{}}} -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1696_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_json/pull1696_1 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_json/pull1696_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_json/pull1696_2 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_xml/issue1074: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_xml/issue1074 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_xml/issue1131: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_xml/issue1131 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_xml/issue1132: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_xml/issue1132 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_xml/issue1132_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_xml/issue1132_2 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_xml/issue1132_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_xml/issue1132_3 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_xml/pull1129_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_xml/pull1129_1 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_xml/pull1129_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_xml/pull1129_2 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_xml/pull1529: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_xml/pull1529 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_xml/pull1537: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lyd_parse_mem_xml/pull1537 -------------------------------------------------------------------------------- /tests/fuzz/corpus/lyd_parse_mem_xml/pull1562: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue1004.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue1004.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue1025.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue1025.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue1027.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue1027.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue1040.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue1040.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue1041.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue1041.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue1042_base-yang-types.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue1042_base-yang-types.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue1042_test-type-provider-b.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue1042_test-type-provider-b.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue1042_test-type-provider.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue1042_test-type-provider.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue1043.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue1043.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue722.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue722.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue723.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue723.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue724.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue724.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue728.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue728.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue733.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue733.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue734.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue734.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue735.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue735.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue739.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue739.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue740.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue740.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue741.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue741.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue742.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue742.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue769.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue769.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue771.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue771.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue772.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue772.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue773.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue773.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue774.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue774.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue777.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue777.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue780.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue780.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue788.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue788.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue789.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue789.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue791.yang: -------------------------------------------------------------------------------- 1 | module m { 2 | include "" 3 | } 4 | -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue791_2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue791_2.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue795.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue795.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue804.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue804.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue805.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue805.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue807.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue807.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue826.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue826.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue827.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue827.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue872.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue872.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue874.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue874.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue970.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue970.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue973.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue973.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue975.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue975.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue976_a.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue976_a.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue976_b.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue976_b.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue979_a.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue979_a.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/issue979_b.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/issue979_b.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/pull1524.yang: -------------------------------------------------------------------------------- 1 | module ''+'c -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/pull1568.yang: -------------------------------------------------------------------------------- 1 | module 2 | f{grouping 3 | s{list 4 | 󠀡ym{ -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/pull1592.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/pull1592.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/pull958.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/pull958.yang -------------------------------------------------------------------------------- /tests/fuzz/corpus/lys_parse_mem/pull960.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/corpus/lys_parse_mem/pull960.yang -------------------------------------------------------------------------------- /tests/fuzz/fuzz_regression_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/fuzz_regression_test.c -------------------------------------------------------------------------------- /tests/fuzz/lyd_parse_mem_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/lyd_parse_mem_json.c -------------------------------------------------------------------------------- /tests/fuzz/lyd_parse_mem_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/lyd_parse_mem_xml.c -------------------------------------------------------------------------------- /tests/fuzz/lys_parse_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/lys_parse_mem.c -------------------------------------------------------------------------------- /tests/fuzz/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/main.c -------------------------------------------------------------------------------- /tests/fuzz/yang_parse_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/fuzz/yang_parse_module.c -------------------------------------------------------------------------------- /tests/ld.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/ld.supp -------------------------------------------------------------------------------- /tests/modules/yang/iana-if-type@2014-05-08.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/iana-if-type@2014-05-08.yang -------------------------------------------------------------------------------- /tests/modules/yang/ietf-interfaces@2014-05-08.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/ietf-interfaces@2014-05-08.yang -------------------------------------------------------------------------------- /tests/modules/yang/ietf-ip@2014-06-16.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/ietf-ip@2014-06-16.yang -------------------------------------------------------------------------------- /tests/modules/yang/ietf-netconf-acm@2018-02-14.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/ietf-netconf-acm@2018-02-14.yang -------------------------------------------------------------------------------- /tests/modules/yang/ietf-netconf-nmda@2019-01-07.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/ietf-netconf-nmda@2019-01-07.yang -------------------------------------------------------------------------------- /tests/modules/yang/ietf-netconf-with-defaults@2011-06-01.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/ietf-netconf-with-defaults@2011-06-01.yang -------------------------------------------------------------------------------- /tests/modules/yang/ietf-netconf@2011-06-01.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/ietf-netconf@2011-06-01.yang -------------------------------------------------------------------------------- /tests/modules/yang/ietf-origin@2018-02-14.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/ietf-origin@2018-02-14.yang -------------------------------------------------------------------------------- /tests/modules/yang/ietf-restconf@2017-01-26.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/ietf-restconf@2017-01-26.yang -------------------------------------------------------------------------------- /tests/modules/yang/mount.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/mount.yang -------------------------------------------------------------------------------- /tests/modules/yang/notifications@2008-07-14.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/notifications@2008-07-14.yang -------------------------------------------------------------------------------- /tests/modules/yang/sm-extension.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/sm-extension.yang -------------------------------------------------------------------------------- /tests/modules/yang/sm-mod.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/sm-mod.yang -------------------------------------------------------------------------------- /tests/modules/yang/sm-modp.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/sm-modp.yang -------------------------------------------------------------------------------- /tests/modules/yang/sm-rpcnotif.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/sm-rpcnotif.yang -------------------------------------------------------------------------------- /tests/modules/yang/sm.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/modules/yang/sm.yang -------------------------------------------------------------------------------- /tests/perf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/perf/CMakeLists.txt -------------------------------------------------------------------------------- /tests/perf/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/perf/perf.c -------------------------------------------------------------------------------- /tests/perf/perf.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/perf/perf.yang -------------------------------------------------------------------------------- /tests/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /tests/plugins/invalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/plugins/invalid.c -------------------------------------------------------------------------------- /tests/plugins/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/plugins/simple.c -------------------------------------------------------------------------------- /tests/style/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/style/CMakeLists.txt -------------------------------------------------------------------------------- /tests/style/cpp_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/style/cpp_compat.c -------------------------------------------------------------------------------- /tests/tests_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/tests_config.h.in -------------------------------------------------------------------------------- /tests/tool_i.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/tool_i.tcl -------------------------------------------------------------------------------- /tests/tool_ni.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/tool_ni.tcl -------------------------------------------------------------------------------- /tests/utests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/utests/basic/test_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/basic/test_common.c -------------------------------------------------------------------------------- /tests/utests/basic/test_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/basic/test_context.c -------------------------------------------------------------------------------- /tests/utests/basic/test_hash_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/basic/test_hash_table.c -------------------------------------------------------------------------------- /tests/utests/basic/test_inout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/basic/test_inout.c -------------------------------------------------------------------------------- /tests/utests/basic/test_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/basic/test_json.c -------------------------------------------------------------------------------- /tests/utests/basic/test_plugins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/basic/test_plugins.c -------------------------------------------------------------------------------- /tests/utests/basic/test_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/basic/test_set.c -------------------------------------------------------------------------------- /tests/utests/basic/test_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/basic/test_xml.c -------------------------------------------------------------------------------- /tests/utests/basic/test_xpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/basic/test_xpath.c -------------------------------------------------------------------------------- /tests/utests/basic/test_yanglib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/basic/test_yanglib.c -------------------------------------------------------------------------------- /tests/utests/data/test_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/data/test_diff.c -------------------------------------------------------------------------------- /tests/utests/data/test_lyb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/data/test_lyb.c -------------------------------------------------------------------------------- /tests/utests/data/test_merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/data/test_merge.c -------------------------------------------------------------------------------- /tests/utests/data/test_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/data/test_new.c -------------------------------------------------------------------------------- /tests/utests/data/test_parser_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/data/test_parser_json.c -------------------------------------------------------------------------------- /tests/utests/data/test_parser_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/data/test_parser_xml.c -------------------------------------------------------------------------------- /tests/utests/data/test_printer_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/data/test_printer_json.c -------------------------------------------------------------------------------- /tests/utests/data/test_printer_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/data/test_printer_xml.c -------------------------------------------------------------------------------- /tests/utests/data/test_tree_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/data/test_tree_data.c -------------------------------------------------------------------------------- /tests/utests/data/test_tree_data_sorted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/data/test_tree_data_sorted.c -------------------------------------------------------------------------------- /tests/utests/data/test_validation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/data/test_validation.c -------------------------------------------------------------------------------- /tests/utests/extensions/test_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/extensions/test_metadata.c -------------------------------------------------------------------------------- /tests/utests/extensions/test_nacm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/extensions/test_nacm.c -------------------------------------------------------------------------------- /tests/utests/extensions/test_schema_mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/extensions/test_schema_mount.c -------------------------------------------------------------------------------- /tests/utests/extensions/test_structure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/extensions/test_structure.c -------------------------------------------------------------------------------- /tests/utests/extensions/test_yangdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/extensions/test_yangdata.c -------------------------------------------------------------------------------- /tests/utests/node/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/node/list.c -------------------------------------------------------------------------------- /tests/utests/restriction/test_pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/restriction/test_pattern.c -------------------------------------------------------------------------------- /tests/utests/restriction/test_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/restriction/test_range.c -------------------------------------------------------------------------------- /tests/utests/schema/test_printer_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/schema/test_printer_tree.c -------------------------------------------------------------------------------- /tests/utests/schema/test_schema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/schema/test_schema.c -------------------------------------------------------------------------------- /tests/utests/schema/test_tree_schema_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/schema/test_tree_schema_compile.c -------------------------------------------------------------------------------- /tests/utests/schema/test_yang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/schema/test_yang.c -------------------------------------------------------------------------------- /tests/utests/schema/test_yin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/schema/test_yin.c -------------------------------------------------------------------------------- /tests/utests/types/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/binary.c -------------------------------------------------------------------------------- /tests/utests/types/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/bits.c -------------------------------------------------------------------------------- /tests/utests/types/boolean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/boolean.c -------------------------------------------------------------------------------- /tests/utests/types/decimal64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/decimal64.c -------------------------------------------------------------------------------- /tests/utests/types/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/empty.c -------------------------------------------------------------------------------- /tests/utests/types/enumeration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/enumeration.c -------------------------------------------------------------------------------- /tests/utests/types/identityref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/identityref.c -------------------------------------------------------------------------------- /tests/utests/types/inet_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/inet_types.c -------------------------------------------------------------------------------- /tests/utests/types/instanceid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/instanceid.c -------------------------------------------------------------------------------- /tests/utests/types/instanceid_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/instanceid_keys.c -------------------------------------------------------------------------------- /tests/utests/types/int16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/int16.c -------------------------------------------------------------------------------- /tests/utests/types/int32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/int32.c -------------------------------------------------------------------------------- /tests/utests/types/int64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/int64.c -------------------------------------------------------------------------------- /tests/utests/types/int8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/int8.c -------------------------------------------------------------------------------- /tests/utests/types/leafref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/leafref.c -------------------------------------------------------------------------------- /tests/utests/types/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/string.c -------------------------------------------------------------------------------- /tests/utests/types/uint16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/uint16.c -------------------------------------------------------------------------------- /tests/utests/types/uint32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/uint32.c -------------------------------------------------------------------------------- /tests/utests/types/uint64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/uint64.c -------------------------------------------------------------------------------- /tests/utests/types/uint8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/uint8.c -------------------------------------------------------------------------------- /tests/utests/types/union.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/union.c -------------------------------------------------------------------------------- /tests/utests/types/yang_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/types/yang_types.c -------------------------------------------------------------------------------- /tests/utests/utests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/utests/utests.h -------------------------------------------------------------------------------- /tests/yanglint/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/CMakeLists.txt -------------------------------------------------------------------------------- /tests/yanglint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/README.md -------------------------------------------------------------------------------- /tests/yanglint/common.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/common.tcl -------------------------------------------------------------------------------- /tests/yanglint/data/modaction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modaction.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modaction_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modaction_ds.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modaction_nc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modaction_nc.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modaction_reply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modaction_reply.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modaction_reply_nc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modaction_reply_nc.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modconfig.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modconfig2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modconfig2.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modconfig_ctx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modconfig_ctx.xml -------------------------------------------------------------------------------- /tests/yanglint/data/moddatanodes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/moddatanodes.xml -------------------------------------------------------------------------------- /tests/yanglint/data/moddefault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/moddefault.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modimp_type_ctx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modimp_type_ctx.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modleaf.djson: -------------------------------------------------------------------------------- 1 | { 2 | "modleaf:lfl": 7 3 | } 4 | -------------------------------------------------------------------------------- /tests/yanglint/data/modleaf.dxml: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tests/yanglint/data/modleaf.xml: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tests/yanglint/data/modleafref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modleafref.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modleafref2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modleafref2.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modmandatory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modmandatory.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modmandatory_invalid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modmandatory_invalid.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modmerge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modmerge.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modmerge2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modmerge2.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modmerge3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modmerge3.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modnotif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modnotif.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modnotif2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modnotif2.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modnotif2_nc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modnotif2_nc.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modnotif_ds.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/yanglint/data/modnotif_nc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modnotif_nc.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modoper_leafref_action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modoper_leafref_action.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modoper_leafref_action_reply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modoper_leafref_action_reply.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modoper_leafref_ds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modoper_leafref_ds.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modoper_leafref_notif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modoper_leafref_notif.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modoper_leafref_notif2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modoper_leafref_notif2.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modoper_leafref_notif_err.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modoper_leafref_notif_err.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modoper_leafref_rpc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modoper_leafref_rpc.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modoper_leafref_rpc_reply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modoper_leafref_rpc_reply.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modrpc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modrpc.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modrpc_nc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modrpc_nc.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modrpc_reply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modrpc_reply.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modrpc_reply_nc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modrpc_reply_nc.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modsm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modsm.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modsm2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modsm2.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modsm_ctx_ext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modsm_ctx_ext.xml -------------------------------------------------------------------------------- /tests/yanglint/data/modsm_ctx_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/data/modsm_ctx_main.xml -------------------------------------------------------------------------------- /tests/yanglint/interactive/add.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/add.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/all.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/all.tcl -------------------------------------------------------------------------------- /tests/yanglint/interactive/clear.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/clear.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/completion.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/completion.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/data_default.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/data_default.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/data_format.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/data_format.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/data_in_format.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/data_in_format.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/data_merge.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/data_merge.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/data_not_strict.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/data_not_strict.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/data_operational.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/data_operational.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/data_present.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/data_present.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/data_type.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/data_type.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/data_xpath.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/data_xpath.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/extdata.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/extdata.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/feature.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/feature.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/list.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/list.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/load.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/load.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/ly.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/ly.tcl -------------------------------------------------------------------------------- /tests/yanglint/interactive/modcwd.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/modcwd.yang -------------------------------------------------------------------------------- /tests/yanglint/interactive/print.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/print.test -------------------------------------------------------------------------------- /tests/yanglint/interactive/searchpath.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/interactive/searchpath.test -------------------------------------------------------------------------------- /tests/yanglint/modules/ietf-interfaces.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/ietf-interfaces.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/ietf-ip.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/ietf-ip.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/ietf-netconf-acm.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/ietf-netconf-acm.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/ietf-netconf-with-defaults@2011-06-01.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/ietf-netconf-with-defaults@2011-06-01.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/ietf-netconf@2011-06-01.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/ietf-netconf@2011-06-01.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modaction.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modaction.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modconfig-augment.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modconfig-augment.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modconfig.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modconfig.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/moddatanodes.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/moddatanodes.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/moddefault.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/moddefault.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modextleafref.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modextleafref.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modfeature.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modfeature.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modimp-path.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modimp-path.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modimp-type.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modimp-type.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modinclude.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modinclude.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modleaf.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modleaf.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modleafref.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modleafref.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modmandatory.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modmandatory.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modmerge.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modmerge.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modmust.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modmust.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modnotif.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modnotif.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modoper-leafref.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modoper-leafref.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modpath.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modpath.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modrpc.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modrpc.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modsm-augment.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modsm-augment.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modsm.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modsm.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modsub.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modsub.yang -------------------------------------------------------------------------------- /tests/yanglint/modules/modtypedef.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/modules/modtypedef.yang -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/all.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/all.tcl -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/data_default.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/data_default.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/data_in_format.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/data_in_format.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/data_merge.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/data_merge.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/data_not_strict.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/data_not_strict.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/data_operational.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/data_operational.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/data_present.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/data_present.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/data_type.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/data_type.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/data_xpath.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/data_xpath.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/disabled_searchdir.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/disabled_searchdir.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/ext_data.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/ext_data.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/extended_leafref.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/extended_leafref.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/format.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/format.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/list.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/list.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/ly.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/ly.tcl -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/make_implemented.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/make_implemented.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/modcwd.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/modcwd.yang -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/path.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/path.test -------------------------------------------------------------------------------- /tests/yanglint/non-interactive/yang_library_file.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yanglint/non-interactive/yang_library_file.test -------------------------------------------------------------------------------- /tests/yangre/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yangre/CMakeLists.txt -------------------------------------------------------------------------------- /tests/yangre/all.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yangre/all.tcl -------------------------------------------------------------------------------- /tests/yangre/arg.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yangre/arg.test -------------------------------------------------------------------------------- /tests/yangre/file.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yangre/file.test -------------------------------------------------------------------------------- /tests/yangre/files/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/yangre/files/empty_str.txt: -------------------------------------------------------------------------------- 1 | "[0-9a-fA-F]*" 2 | 3 | -------------------------------------------------------------------------------- /tests/yangre/files/empty_str_err.txt: -------------------------------------------------------------------------------- 1 | "[0-9a-fA-F]+" 2 | 3 | -------------------------------------------------------------------------------- /tests/yangre/files/one_pattern.txt: -------------------------------------------------------------------------------- 1 | "[0-9a-fA-F]*" 2 | 3 | 1F 4 | -------------------------------------------------------------------------------- /tests/yangre/files/two_patterns.txt: -------------------------------------------------------------------------------- 1 | "[0-9a-fA-F]*" 2 | '[a-zA-Z0-9\-_.]*' 3 | 4 | 1F 5 | -------------------------------------------------------------------------------- /tests/yangre/files/two_patterns_err.txt: -------------------------------------------------------------------------------- 1 | "[0-9a-fA-F]*" 2 | '[a-zA-Z0-9\-_.]*' 3 | 4 | @!@ 5 | -------------------------------------------------------------------------------- /tests/yangre/files/two_patterns_invert_match.txt: -------------------------------------------------------------------------------- 1 | "[a-z]*" 2 | '[a-f]*' 3 | 4 | gh 5 | -------------------------------------------------------------------------------- /tests/yangre/files/two_patterns_invert_match_err.txt: -------------------------------------------------------------------------------- 1 | "[a-z]*" 2 | '[a-f]*' 3 | 4 | ab 5 | -------------------------------------------------------------------------------- /tests/yangre/invert_match.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yangre/invert_match.test -------------------------------------------------------------------------------- /tests/yangre/ly.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yangre/ly.tcl -------------------------------------------------------------------------------- /tests/yangre/pattern.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tests/yangre/pattern.test -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/config.h.in -------------------------------------------------------------------------------- /tools/lint/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/CMakeLists.txt -------------------------------------------------------------------------------- /tools/lint/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd.c -------------------------------------------------------------------------------- /tools/lint/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd.h -------------------------------------------------------------------------------- /tools/lint/cmd_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd_add.c -------------------------------------------------------------------------------- /tools/lint/cmd_clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd_clear.c -------------------------------------------------------------------------------- /tools/lint/cmd_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd_data.c -------------------------------------------------------------------------------- /tools/lint/cmd_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd_debug.c -------------------------------------------------------------------------------- /tools/lint/cmd_extdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd_extdata.c -------------------------------------------------------------------------------- /tools/lint/cmd_feature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd_feature.c -------------------------------------------------------------------------------- /tools/lint/cmd_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd_help.c -------------------------------------------------------------------------------- /tools/lint/cmd_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd_list.c -------------------------------------------------------------------------------- /tools/lint/cmd_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd_load.c -------------------------------------------------------------------------------- /tools/lint/cmd_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd_print.c -------------------------------------------------------------------------------- /tools/lint/cmd_searchpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd_searchpath.c -------------------------------------------------------------------------------- /tools/lint/cmd_verb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/cmd_verb.c -------------------------------------------------------------------------------- /tools/lint/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/common.c -------------------------------------------------------------------------------- /tools/lint/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/common.h -------------------------------------------------------------------------------- /tools/lint/completion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/completion.c -------------------------------------------------------------------------------- /tools/lint/completion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/completion.h -------------------------------------------------------------------------------- /tools/lint/configuration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/configuration.c -------------------------------------------------------------------------------- /tools/lint/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/configuration.h -------------------------------------------------------------------------------- /tools/lint/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/README.md -------------------------------------------------------------------------------- /tools/lint/examples/action-reply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/action-reply.xml -------------------------------------------------------------------------------- /tools/lint/examples/action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/action.xml -------------------------------------------------------------------------------- /tools/lint/examples/config-acm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/config-acm.xml -------------------------------------------------------------------------------- /tools/lint/examples/config-missing-key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/config-missing-key.xml -------------------------------------------------------------------------------- /tools/lint/examples/config-unknown-element.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/config-unknown-element.xml -------------------------------------------------------------------------------- /tools/lint/examples/data-acm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/data-acm.xml -------------------------------------------------------------------------------- /tools/lint/examples/data-ip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/data-ip.xml -------------------------------------------------------------------------------- /tools/lint/examples/data-malformed-xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/data-malformed-xml.xml -------------------------------------------------------------------------------- /tools/lint/examples/data-malformed-xml2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/data-malformed-xml2.xml -------------------------------------------------------------------------------- /tools/lint/examples/data-missing-key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/data-missing-key.xml -------------------------------------------------------------------------------- /tools/lint/examples/data-out-of-range-value.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/data-out-of-range-value.xml -------------------------------------------------------------------------------- /tools/lint/examples/datastore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/datastore.xml -------------------------------------------------------------------------------- /tools/lint/examples/example-jukebox.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/example-jukebox.yang -------------------------------------------------------------------------------- /tools/lint/examples/ext-data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/ext-data.xml -------------------------------------------------------------------------------- /tools/lint/examples/iana-if-type.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/iana-if-type.yang -------------------------------------------------------------------------------- /tools/lint/examples/ietf-interfaces.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/ietf-interfaces.yang -------------------------------------------------------------------------------- /tools/lint/examples/ietf-ip.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/ietf-ip.yang -------------------------------------------------------------------------------- /tools/lint/examples/ietf-netconf-acm-when.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/ietf-netconf-acm-when.yang -------------------------------------------------------------------------------- /tools/lint/examples/ietf-netconf-acm-when.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/ietf-netconf-acm-when.yin -------------------------------------------------------------------------------- /tools/lint/examples/ietf-netconf-acm-when2.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/ietf-netconf-acm-when2.yin -------------------------------------------------------------------------------- /tools/lint/examples/ietf-netconf-acm.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/ietf-netconf-acm.yang -------------------------------------------------------------------------------- /tools/lint/examples/ietf-restconf@2017-01-26.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/ietf-restconf@2017-01-26.yang -------------------------------------------------------------------------------- /tools/lint/examples/module1.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/module1.yang -------------------------------------------------------------------------------- /tools/lint/examples/module1b.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/module1b.yang -------------------------------------------------------------------------------- /tools/lint/examples/module2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/module2.yang -------------------------------------------------------------------------------- /tools/lint/examples/module2.yin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/module2.yin -------------------------------------------------------------------------------- /tools/lint/examples/module3.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/module3.yang -------------------------------------------------------------------------------- /tools/lint/examples/module4.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/module4.yang -------------------------------------------------------------------------------- /tools/lint/examples/nested-notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/nested-notification.xml -------------------------------------------------------------------------------- /tools/lint/examples/notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/notification.xml -------------------------------------------------------------------------------- /tools/lint/examples/operational-data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/operational-data.xml -------------------------------------------------------------------------------- /tools/lint/examples/rpc-reply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/rpc-reply.xml -------------------------------------------------------------------------------- /tools/lint/examples/rpc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/rpc.xml -------------------------------------------------------------------------------- /tools/lint/examples/sm-context-extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/sm-context-extension.xml -------------------------------------------------------------------------------- /tools/lint/examples/sm-context-main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/sm-context-main.xml -------------------------------------------------------------------------------- /tools/lint/examples/sm-data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/sm-data.xml -------------------------------------------------------------------------------- /tools/lint/examples/sm-extension.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/sm-extension.yang -------------------------------------------------------------------------------- /tools/lint/examples/sm-main.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/sm-main.yang -------------------------------------------------------------------------------- /tools/lint/examples/sm-mod.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/examples/sm-mod.yang -------------------------------------------------------------------------------- /tools/lint/linenoise/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/linenoise/LICENSE -------------------------------------------------------------------------------- /tools/lint/linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/linenoise/linenoise.c -------------------------------------------------------------------------------- /tools/lint/linenoise/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/linenoise/linenoise.h -------------------------------------------------------------------------------- /tools/lint/linenoise/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/linenoise/utf8.c -------------------------------------------------------------------------------- /tools/lint/linenoise/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/linenoise/utf8.h -------------------------------------------------------------------------------- /tools/lint/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/main.c -------------------------------------------------------------------------------- /tools/lint/main_ni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/main_ni.c -------------------------------------------------------------------------------- /tools/lint/main_ni_only.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/main_ni_only.c -------------------------------------------------------------------------------- /tools/lint/yanglint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/yanglint.1 -------------------------------------------------------------------------------- /tools/lint/yl_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/yl_opt.c -------------------------------------------------------------------------------- /tools/lint/yl_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/yl_opt.h -------------------------------------------------------------------------------- /tools/lint/yl_schema_features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/yl_schema_features.c -------------------------------------------------------------------------------- /tools/lint/yl_schema_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/lint/yl_schema_features.h -------------------------------------------------------------------------------- /tools/re/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/re/CMakeLists.txt -------------------------------------------------------------------------------- /tools/re/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/re/main.c -------------------------------------------------------------------------------- /tools/re/yangre.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/tools/re/yangre.1 -------------------------------------------------------------------------------- /uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/libyang/HEAD/uncrustify.cfg --------------------------------------------------------------------------------