compuphase / minIni

A small and portable INI file library with read/write support
http://www.compuphase.com/minini.htm
Other
382 stars 114 forks source link

Does not compile for embedded platform #16

Closed alsaleem00 closed 3 years ago

alsaleem00 commented 3 years ago

I am using minIni for embedded system (ESP32). The compiler failed at _tcsnicmp --> strnicmp. I see that this is defined when __linux is defined (_tcsnicmp --> strncasecmp). My compiler is gcc which is similar to linux. Could you add switch for gcc ?

compuphase commented 3 years ago

Fixed in commit 51d636f9c60f8d013860965565b447ef14dc2286.

alsaleem00 commented 3 years ago

thanks.