Skip to content

berna1995/configuration-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

configuration-parser

A very simple configuration parser in C.

With this simple library you can easily parse configuration files formatted as follow:

# This is a comment
Key1  =  Value1
Key2  =  Value2
...
KeyN  =  ValueN

Library Usage

To use the configuration parser just include the header and use the functions like that:

FILE* conf_file = fopen("path/to/conf/file");
conf_entries_t* conf = configuration_parse_file(conf_file);
if(conf == NULL)
  printf("Invalid configuration file...");
else {
  char* value = configuration_read_value(conf, "Key1");
  if(value == NULL)
    printf("There's no value for key: Key1");
  else {
    doSomething();
    doSomething();
    doSomething();
  }
  configuration_free(&conf);
}

Project Structure

  • /samples: contains some configuration file examples used by the test file
  • /src: contains all the source and header files
  • Makefile: the makefile yay!
  • LICENSE: the license of the project
  • README.md: this description!

Makefile

To test the library just use:

make check

To just compile the test file use:

make test

To clean the build directory use:

make clean

About

A simple configuration file parser in C

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published