├── .bumpversion.cfg ├── LICENSE ├── README.md ├── examples ├── IniBrowseExample │ ├── IniBrowseExample.ino │ ├── README.md │ └── lunch.ini └── IniFileExample │ ├── IniFileExample.ino │ ├── README.md │ └── net.ini ├── extras └── test │ ├── .gitignore │ ├── Ethernet.h │ ├── File.cpp │ ├── File.h │ ├── IPAddress.cpp │ ├── IPAddress.h │ ├── Makefile │ ├── SD.h │ ├── arduino_compat.h │ ├── browsetest.ini │ ├── ini_test.cpp │ ├── ini_test.regressiontest │ ├── readme.md │ ├── readtest.cpp │ └── test.ini ├── keywords.txt ├── library.properties └── src ├── IniFile.cpp └── IniFile.h /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/README.md -------------------------------------------------------------------------------- /examples/IniBrowseExample/IniBrowseExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/examples/IniBrowseExample/IniBrowseExample.ino -------------------------------------------------------------------------------- /examples/IniBrowseExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/examples/IniBrowseExample/README.md -------------------------------------------------------------------------------- /examples/IniBrowseExample/lunch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/examples/IniBrowseExample/lunch.ini -------------------------------------------------------------------------------- /examples/IniFileExample/IniFileExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/examples/IniFileExample/IniFileExample.ino -------------------------------------------------------------------------------- /examples/IniFileExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/examples/IniFileExample/README.md -------------------------------------------------------------------------------- /examples/IniFileExample/net.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/examples/IniFileExample/net.ini -------------------------------------------------------------------------------- /extras/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/.gitignore -------------------------------------------------------------------------------- /extras/test/Ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/Ethernet.h -------------------------------------------------------------------------------- /extras/test/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/File.cpp -------------------------------------------------------------------------------- /extras/test/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/File.h -------------------------------------------------------------------------------- /extras/test/IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/IPAddress.cpp -------------------------------------------------------------------------------- /extras/test/IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/IPAddress.h -------------------------------------------------------------------------------- /extras/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/Makefile -------------------------------------------------------------------------------- /extras/test/SD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/SD.h -------------------------------------------------------------------------------- /extras/test/arduino_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/arduino_compat.h -------------------------------------------------------------------------------- /extras/test/browsetest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/browsetest.ini -------------------------------------------------------------------------------- /extras/test/ini_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/ini_test.cpp -------------------------------------------------------------------------------- /extras/test/ini_test.regressiontest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/ini_test.regressiontest -------------------------------------------------------------------------------- /extras/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/readme.md -------------------------------------------------------------------------------- /extras/test/readtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/readtest.cpp -------------------------------------------------------------------------------- /extras/test/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/extras/test/test.ini -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/library.properties -------------------------------------------------------------------------------- /src/IniFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/src/IniFile.cpp -------------------------------------------------------------------------------- /src/IniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevemarple/IniFile/HEAD/src/IniFile.h --------------------------------------------------------------------------------