diff options
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -101,13 +101,13 @@ extern void uFree(Opaque /* ptr */); /***====================================================================***/ -extern Boolean uSetErrorFile(char *name); -extern void uInformation(char *s, ...); -extern void uAction(char *s, ...); -extern void uWarning(char *s, ...); -extern void uError(char *s, ...); -extern void uFatalError(char *s, ...); -extern void uInternalError(char *s, ...); +extern Boolean uSetErrorFile(const char *name); +extern void uInformation(const char *s, ...); +extern void uAction(const char *s, ...); +extern void uWarning(const char *s, ...); +extern void uError(const char *s, ...); +extern void uFatalError(const char *s, ...); +extern void uInternalError(const char *s, ...); /***====================================================================***/ @@ -122,16 +122,16 @@ extern void uInternalError(char *s, ...); #define uStrCaseCmp(s1,s2) (strcasecmp(s1,s2)) #define uStrCasePrefix(p,s) (strncasecmp(p,s,strlen(p))==0) #else -extern int uStrCaseCmp(char * /* s1 */ , - char * /* s2 */); +extern int uStrCaseCmp(const char * /* s1 */ , + const char * /* s2 */); -extern int uStrCasePrefix(char * /* p */ , - char * /* str */); +extern int uStrCasePrefix(const char * /* p */ , + const char * /* str */); #endif #ifdef HAVE_STRDUP #define uStringDup(s1) (strdup(s1)) #else -extern char *uStringDup(char * /* s1 */); +extern char *uStringDup(const char * /* s1 */); #endif /***====================================================================***/ |