Skip to content

AzureHaze21/TinyINI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 

Repository files navigation

TinyINI

single class INI reader

Usage

#include "TinyINI.h"

TinyIni ini("C:\\path_to_file.ini");
auto section1 = ini[L"Section1"];
auto section2 = ini.get(L"Section1");
auto value1 = ini[L"Section1"][L"Key1"];
auto value2 = ini.get(L"Section2", L"Key1");

Supported encodings

ANSI, UTF8, UTF16 (little and big endian)

About

single class INI reader

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages