BeRTOS
Functions
ini_reader.h File Reference

Ini file reader module. More...

#include <io/kfile.h>

Go to the source code of this file.

Functions

int ini_getString (KFile *fd, const char *section, const char *key, const char *default_value, char *buf, size_t size)
 Returns the value for the given string in char* format.

Detailed Description

Ini file reader module.

The format accepted is:

Author:
Luca Ottaviano <lottaviano@develer.com>

Definition in file ini_reader.h.


Function Documentation

int ini_getString ( KFile fd,
const char *  section,
const char *  key,
const char *  default_value,
char *  buf,
size_t  size 
)

Returns the value for the given string in char* format.

Reads the whole input file looking for section and key and fills the provided buffer with the corresponding value. On errors, the function fills the provided buffer with the default value and returns EOF.

Parameters:
fdAn initialized KFile structure.
sectionThe section to be looked for.
keyThe key to search for.
default_valueThe default value.
bufThe buffer to be filled.
sizeThe size of the provided buffer.
Returns:
0 if section and key were found, EOF on errors.

Definition at line 140 of file ini_reader.c.