mirror of
https://github.com/benhoyt/inih.git
synced 2025-01-17 22:22:53 +08:00
4d08274b35
Only define INI_ALLOW_MULTILINE if it's not already defined. Added C++ INIReader class. Moved license into LICENSE.txt, added README.txt. Added unit tests and checked in baseline files. Made line lengths < 80 chars.
9 lines
243 B
INI
9 lines
243 B
INI
; Test config file for ini_test.c
|
|
|
|
[Protocol] ; Protocol configuration
|
|
Version=6 ; IPv6
|
|
|
|
[User]
|
|
Name = Bob Smith ; Spaces around '=' are stripped
|
|
Email = bob@smith.com ; And comments (like this) ignored
|