ossp-pkg/rc/rc.h 1.9 -> 1.10
--- rc.h 2002/02/07 12:38:32 1.9
+++ rc.h 2002/02/08 18:36:40 1.10
@@ -43,6 +43,7 @@
#define TRUE (!FALSE)
#endif
+#include "rc_private.h"
/* Unique identifier to use with OSSP ex library */
extern const char ossprc_id[];
@@ -54,12 +55,22 @@
RC_ERR_MEM, /* Memory error */
RC_ERR_SYS, /* System error (see errno) */
RC_ERR_IO, /* Input/output error */
- RC_ERR_FMT, /* Formatting error */
RC_ERR_INT /* Internal error */
} rc_return_t;
-/* Function prototypes */
-rc_return_t parseopts(int, char **);
+/* Option function prototypes */
+rc_return_t parseOpts(int, char **);
+rc_return_t procOpts(char, char *);
+
+/* Config function prototypes */
+rc_return_t configInit(rc_config_t **);
+rc_return_t configFill(rc_config_t *, int, char **);
+rc_return_t configDestruct(rc_config_t *);
+
+/* Util function prototypes */
+char *strErr(rc_return_t);
+
+/* Other function prototypes */
/*rc_result_t rc_Err (void);
rc_result_t rc_Warn (void);
|
|