├── .gitignore ├── LICENSE ├── README.md ├── ini.c ├── ini.h ├── test.c └── test.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haipome/ini/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haipome/ini/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ini 2 | === 3 | 4 | simple read only ini parser 5 | -------------------------------------------------------------------------------- /ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haipome/ini/HEAD/ini.c -------------------------------------------------------------------------------- /ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haipome/ini/HEAD/ini.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haipome/ini/HEAD/test.c -------------------------------------------------------------------------------- /test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haipome/ini/HEAD/test.ini --------------------------------------------------------------------------------