diff options
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -204,7 +204,7 @@ uDebugNOI(char *s, ...) static FILE *errorFile = NULL; Boolean -uSetErrorFile(char *name) +uSetErrorFile(const char *name) { if ((errorFile != NULL) && (errorFile != stderr)) { fprintf(errorFile, "switching to %s\n", name ? name : "stderr"); @@ -222,7 +222,7 @@ uSetErrorFile(char *name) } void -uInformation(char *s, ...) +uInformation(const char *s, ...) { va_list ap; @@ -236,7 +236,7 @@ uInformation(char *s, ...) /***====================================================================***/ void -uAction(char *s, ...) +uAction(const char *s, ...) { va_list ap; @@ -251,7 +251,7 @@ uAction(char *s, ...) /***====================================================================***/ void -uWarning(char *s, ...) +uWarning(const char *s, ...) { va_list ap; @@ -266,7 +266,7 @@ uWarning(char *s, ...) /***====================================================================***/ void -uError(char *s, ...) +uError(const char *s, ...) { va_list ap; @@ -281,7 +281,7 @@ uError(char *s, ...) /***====================================================================***/ void -uFatalError(char *s, ...) +uFatalError(const char *s, ...) { va_list ap; @@ -298,7 +298,7 @@ uFatalError(char *s, ...) /***====================================================================***/ void -uInternalError(char *s, ...) +uInternalError(const char *s, ...) { va_list ap; @@ -314,7 +314,7 @@ uInternalError(char *s, ...) #ifndef HAVE_STRDUP char * -uStringDup(char *str) +uStringDup(const char *str) { char *rtrn; @@ -328,7 +328,7 @@ uStringDup(char *str) #ifndef HAVE_STRCASECMP int -uStrCaseCmp(char *str1, char *str2) +uStrCaseCmp(const char *str1, const char *str2) { char buf1[512], buf2[512]; char c, *s; @@ -355,7 +355,7 @@ uStrCaseCmp(char *str1, char *str2) } int -uStrCasePrefix(char *prefix, char *str) +uStrCasePrefix(const char *prefix, const char *str) { char c1; char c2; |