Differences From Artifact [0dfd11fd0f]:
- File libconfig_private.h — part of check-in [6a0a10a0ab] at 2004-10-24 14:26:31 on branch trunk — Lots of improvements to libconfig: We now process the command line arguments ourselves rather than using getopt(). We now process Apache-style config files. Began work on documentation. Many more bug fixes (user: rkeene, size: 452) [annotate] [blame] [check-ins using]
To Artifact [8f8355315c]:
- File libconfig_private.h — part of check-in [730308bffd] at 2005-09-30 08:27:32 on branch trunk — Added filename and line numbers to error messages. Began adding support for lists of options rather than just one option per item. libconfig 0.1.19 (user: rkeene, size: 506) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 | #ifndef _RSK_LIBCONFIG_PRIVATE_H #define _RSK_LIBCONFIG_PRIVATE_H #include "libconfig.h" extern lc_err_t lc_errno; int lc_process_var(const char *var, const char *varargs, const char *value, lc_flags_t flags); struct lc_varhandler_st; struct lc_varhandler_st { struct lc_varhandler_st *_next; | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #ifndef _RSK_LIBCONFIG_PRIVATE_H #define _RSK_LIBCONFIG_PRIVATE_H #include "libconfig.h" extern lc_err_t lc_errno; extern int lc_errline; extern const char *lc_errfile; int lc_process_var(const char *var, const char *varargs, const char *value, lc_flags_t flags); struct lc_varhandler_st; struct lc_varhandler_st { struct lc_varhandler_st *_next; |
︙ | ︙ |