mirror of
https://github.com/benhoyt/inih.git
synced 2025-01-17 22:22:53 +08:00
9cecf0643d
Add INIReader::GetInteger64 and INIReader::GetUnsigned64
12 lines
414 B
INI
12 lines
414 B
INI
; Test config file for ini_example.c and INIReaderTest.cpp
|
|
|
|
[protocol] ; Protocol configuration
|
|
version=6 ; IPv6
|
|
|
|
[user]
|
|
name = Bob Smith ; Spaces around '=' are stripped
|
|
email = bob@smith.com ; And comments (like this) ignored
|
|
active = true ; Test a boolean
|
|
pi = 3.14159 ; Test a floating point number
|
|
trillion = 1000000000000 ; Test 64-bit integers
|