@@ -50,8 +50,7 @@ extern "C" {
5050 */
5151/*--------------------------------------------------------------------------*/
5252
53- int iniparser_getnsec (const dictionary * d );
54-
53+ int iniparser_getnsec (const dictionary * d );
5554
5655/*-------------------------------------------------------------------------*/
5756/**
@@ -68,8 +67,7 @@ int iniparser_getnsec(const dictionary * d);
6867 */
6968/*--------------------------------------------------------------------------*/
7069
71- const char * iniparser_getsecname (const dictionary * d , int n );
72-
70+ const char * iniparser_getsecname (const dictionary * d , int n );
7371
7472/*-------------------------------------------------------------------------*/
7573/**
@@ -83,7 +81,7 @@ const char * iniparser_getsecname(const dictionary * d, int n);
8381 */
8482/*--------------------------------------------------------------------------*/
8583
86- void iniparser_dump_ini (const dictionary * d , FILE * f );
84+ void iniparser_dump_ini (const dictionary * d , FILE * f );
8785
8886/*-------------------------------------------------------------------------*/
8987/**
@@ -98,7 +96,7 @@ void iniparser_dump_ini(const dictionary * d, FILE * f);
9896 */
9997/*--------------------------------------------------------------------------*/
10098
101- void iniparser_dumpsection_ini (const dictionary * d , const char * s , FILE * f );
99+ void iniparser_dumpsection_ini (const dictionary * d , const char * s , FILE * f );
102100
103101/*-------------------------------------------------------------------------*/
104102/**
@@ -113,7 +111,7 @@ void iniparser_dumpsection_ini(const dictionary * d, const char * s, FILE * f);
113111 purposes mostly.
114112 */
115113/*--------------------------------------------------------------------------*/
116- void iniparser_dump (const dictionary * d , FILE * f );
114+ void iniparser_dump (const dictionary * d , FILE * f );
117115
118116/*-------------------------------------------------------------------------*/
119117/**
@@ -123,7 +121,7 @@ void iniparser_dump(const dictionary * d, FILE * f);
123121 @return Number of keys in section
124122 */
125123/*--------------------------------------------------------------------------*/
126- int iniparser_getsecnkeys (const dictionary * d , const char * s );
124+ int iniparser_getsecnkeys (const dictionary * d , const char * s );
127125
128126/*-------------------------------------------------------------------------*/
129127/**
@@ -141,8 +139,7 @@ int iniparser_getsecnkeys(const dictionary * d, const char * s);
141139 a string allocated in the dictionary; do not free or modify them.
142140 */
143141/*--------------------------------------------------------------------------*/
144- const char * * iniparser_getseckeys (const dictionary * d , const char * s , const char * * keys );
145-
142+ const char * * iniparser_getseckeys (const dictionary * d , const char * s , const char * * keys );
146143
147144/*-------------------------------------------------------------------------*/
148145/**
@@ -159,7 +156,7 @@ const char ** iniparser_getseckeys(const dictionary * d, const char * s, const c
159156 the dictionary, do not free or modify it.
160157 */
161158/*--------------------------------------------------------------------------*/
162- const char * iniparser_getstring (const dictionary * d , const char * key , const char * def );
159+ const char * iniparser_getstring (const dictionary * d , const char * key , const char * def );
163160
164161/*-------------------------------------------------------------------------*/
165162/**
@@ -188,7 +185,7 @@ const char * iniparser_getstring(const dictionary * d, const char * key, const c
188185 Credits: Thanks to A. Becker for suggesting strtol()
189186 */
190187/*--------------------------------------------------------------------------*/
191- int iniparser_getint (const dictionary * d , const char * key , int notfound );
188+ int iniparser_getint (const dictionary * d , const char * key , int notfound );
192189
193190/*-------------------------------------------------------------------------*/
194191/**
@@ -203,7 +200,7 @@ int iniparser_getint(const dictionary * d, const char * key, int notfound);
203200 the notfound value is returned.
204201 */
205202/*--------------------------------------------------------------------------*/
206- double iniparser_getdouble (const dictionary * d , const char * key , double notfound );
203+ double iniparser_getdouble (const dictionary * d , const char * key , double notfound );
207204
208205/*-------------------------------------------------------------------------*/
209206/**
@@ -237,8 +234,7 @@ double iniparser_getdouble(const dictionary * d, const char * key, double notfou
237234 necessarily have to be 0 or 1.
238235 */
239236/*--------------------------------------------------------------------------*/
240- int iniparser_getboolean (const dictionary * d , const char * key , int notfound );
241-
237+ int iniparser_getboolean (const dictionary * d , const char * key , int notfound );
242238
243239/*-------------------------------------------------------------------------*/
244240/**
@@ -253,8 +249,7 @@ int iniparser_getboolean(const dictionary * d, const char * key, int notfound);
253249 It is Ok to set val to NULL.
254250 */
255251/*--------------------------------------------------------------------------*/
256- int iniparser_set (dictionary * ini , const char * entry , const char * val );
257-
252+ int iniparser_set (dictionary * ini , const char * entry , const char * val );
258253
259254/*-------------------------------------------------------------------------*/
260255/**
@@ -266,7 +261,7 @@ int iniparser_set(dictionary * ini, const char * entry, const char * val);
266261 If the given entry can be found, it is deleted from the dictionary.
267262 */
268263/*--------------------------------------------------------------------------*/
269- void iniparser_unset (dictionary * ini , const char * entry );
264+ void iniparser_unset (dictionary * ini , const char * entry );
270265
271266/*-------------------------------------------------------------------------*/
272267/**
@@ -280,7 +275,7 @@ void iniparser_unset(dictionary * ini, const char * entry);
280275 of querying for the presence of sections in a dictionary.
281276 */
282277/*--------------------------------------------------------------------------*/
283- int iniparser_find_entry (const dictionary * ini , const char * entry ) ;
278+ int iniparser_find_entry (const dictionary * ini , const char * entry );
284279
285280/*-------------------------------------------------------------------------*/
286281/**
@@ -296,7 +291,7 @@ int iniparser_find_entry(const dictionary * ini, const char * entry) ;
296291 The returned dictionary must be freed using iniparser_freedict().
297292 */
298293/*--------------------------------------------------------------------------*/
299- dictionary * iniparser_load (const char * ininame );
294+ dictionary * iniparser_load (const char * ininame );
300295
301296/*-------------------------------------------------------------------------*/
302297/**
@@ -309,7 +304,7 @@ dictionary * iniparser_load(const char * ininame);
309304 gets out of the current context.
310305 */
311306/*--------------------------------------------------------------------------*/
312- void iniparser_freedict (dictionary * d );
307+ void iniparser_freedict (dictionary * d );
313308
314309#ifdef __cplusplus
315310}
0 commit comments