[go: up one dir, main page]

Skip to content
/ ini Public

A cross-platform library that provides a simple API to read and write configuration files.

Notifications You must be signed in to change notification settings

xunx-ii/ini

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ini

A cross-platform library that provides a simple API to read and write configuration files.

SIMPLE USAGE

// load
ini_t* ini = ini_load("D:/test.ini");

// set
ini_set(ini, "tony", "name", "tony");
ini_set(ini, "tony", "sex", "boy");
  
// get 
const char* name = "";
const char* default_name = "";
ini_get(ini, "tony", "name", (void**)(&name), (void**)(&default_name));
  
// save to file
ini_write(ini);
  

About

A cross-platform library that provides a simple API to read and write configuration files.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published