├── .gitignore ├── Makefile ├── README.md └── src ├── Makefile ├── easy_uci.c └── easy_uci.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H2NCH2COOH/easy_uci/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H2NCH2COOH/easy_uci/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # easy_uci 2 | OpenWRT UCI C API Wrap 3 | -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H2NCH2COOH/easy_uci/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/easy_uci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H2NCH2COOH/easy_uci/HEAD/src/easy_uci.c -------------------------------------------------------------------------------- /src/easy_uci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/H2NCH2COOH/easy_uci/HEAD/src/easy_uci.h --------------------------------------------------------------------------------