LIRC libraries
LinuxInfraredRemoteControl
 All Data Structures Files Functions Variables Typedefs Enumerations Macros Groups Pages
ciniparser.c File Reference

(9c596ec 2015-02-10 14:16:32 +0100)

Parser for ini files. More...

#include <ctype.h>
#include <ciniparser.h>

Go to the source code of this file.

Macros

#define ASCIILINESZ   (1024)
 
#define INI_INVALID_KEY   ((char*)NULL)
 

Typedefs

typedef enum _line_status_ line_status
 

Enumerations

enum  _line_status_ {
  LINE_UNPROCESSED, LINE_ERROR, LINE_EMPTY, LINE_COMMENT,
  LINE_SECTION, LINE_VALUE
}
 

Functions

int ciniparser_getnsec (dictionary *d)
 Get number of sections in a dictionary. More...
 
const char * ciniparser_getsecname (dictionary *d, int n)
 Get name for section n in a dictionary. More...
 
void ciniparser_dump (dictionary *d, FILE *f)
 Dump a dictionary to an opened file pointer. More...
 
void ciniparser_dump_ini (dictionary *d, FILE *f)
 Save a dictionary to a loadable ini file. More...
 
const char * ciniparser_getstring (dictionary *d, const char *key, char *def)
 Get the string associated to a key. More...
 
int ciniparser_getint (dictionary *d, const char *key, int notfound)
 Get the string associated to a key, convert to an int. More...
 
double ciniparser_getdouble (dictionary *d, const char *key, double notfound)
 Get the string associated to a key, convert to a double. More...
 
int ciniparser_getboolean (dictionary *d, const char *key, int notfound)
 Get the string associated to a key, convert to a boolean. More...
 
int ciniparser_find_entry (dictionary *ini, const char *entry)
 Finds out if a given entry exists in a dictionary. More...
 
int ciniparser_set (dictionary *d, const char *entry, const char *val)
 Set an item in the dictionary. More...
 
void ciniparser_unset (dictionary *ini, char *entry)
 Delete an entry in a dictionary. More...
 
dictionaryciniparser_load (const char *ininame)
 Parse an ini file and return an allocated dictionary object. More...
 
void ciniparser_freedict (dictionary *d)
 Free all memory associated to an ini dictionary. More...
 

Detailed Description

Parser for ini files.

Author
N. Devillard
Date
Sep 2007
Version
3.0

Definition in file ciniparser.c.