Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 264508
Collapse All | Expand All

(-)iniparser3.0b/src/dictionary.c (+8 lines)
Lines 38-43 Link Here
38
/*---------------------------------------------------------------------------
38
/*---------------------------------------------------------------------------
39
  							Private functions
39
  							Private functions
40
 ---------------------------------------------------------------------------*/
40
 ---------------------------------------------------------------------------*/
41
#ifdef __cplusplus
42
extern "C" {
43
#endif
41
44
42
/* Doubles the allocated size associated to a pointer */
45
/* Doubles the allocated size associated to a pointer */
43
/* 'size' is the current allocated size. */
46
/* 'size' is the current allocated size. */
Lines 401-405 Link Here
401
	dictionary_del(d);
404
	dictionary_del(d);
402
	return 0 ;
405
	return 0 ;
403
}
406
}
407
408
#ifdef __cplusplus
409
}
410
#endif
411
404
#endif
412
#endif
405
/* vim: set ts=4 et sw=4 tw=75 */
413
/* vim: set ts=4 et sw=4 tw=75 */
(-)iniparser3.0b/src/iniparser.h (+8 lines)
Lines 41-46 Link Here
41
#define iniparser_getstr(d, k)  iniparser_getstring(d, k, NULL)
41
#define iniparser_getstr(d, k)  iniparser_getstring(d, k, NULL)
42
#define iniparser_setstr        iniparser_setstring
42
#define iniparser_setstr        iniparser_setstring
43
43
44
#ifdef __cplusplus
45
extern "C" {
46
#endif
47
44
/*-------------------------------------------------------------------------*/
48
/*-------------------------------------------------------------------------*/
45
/**
49
/**
46
  @brief    Get number of sections in a dictionary
50
  @brief    Get number of sections in a dictionary
Lines 277-280 Link Here
277
/*--------------------------------------------------------------------------*/
281
/*--------------------------------------------------------------------------*/
278
void iniparser_freedict(dictionary * d);
282
void iniparser_freedict(dictionary * d);
279
283
284
#ifdef __cplusplus
285
}
286
#endif
287
280
#endif
288
#endif

Return to bug 264508