summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-20 18:21:37 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-20 18:21:37 -0800
commitd304e315d8143b4fbcb99e8086a6fad0dd051384 (patch)
tree713b78e62948e33ac6b4705001987d9b813a6f70
parent517ad56361ff9545bfc9730523e713a2bf641943 (diff)
Constify arguments to utils.c functions
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--utils.c32
-rw-r--r--utils.h36
2 files changed, 34 insertions, 34 deletions
diff --git a/utils.c b/utils.c
index 0e0479d..a37e6fe 100644
--- a/utils.c
+++ b/utils.c
@@ -96,7 +96,7 @@ static FILE *entryFile= NULL;
static int uEntryLevel;
Boolean
-uSetEntryFile(char *name)
+uSetEntryFile(const char *name)
{
if ((entryFile!=NULL)&&(entryFile!=stderr)) {
fprintf(entryFile,"switching to %s\n",name?name:"stderr");
@@ -112,7 +112,7 @@ uSetEntryFile(char *name)
}
void
-uEntry(int l, char *s,...)
+uEntry(int l, const char *s,...)
{
int i;
va_list ap;
@@ -128,7 +128,7 @@ va_list ap;
}
void
-uExit(int l, char *rtVal)
+uExit(int l, const char *rtVal)
{
int i;
@@ -150,7 +150,7 @@ int i;
int uDebugIndentSize= 4;
Boolean
-uSetDebugFile(char *name)
+uSetDebugFile(const char *name)
{
if ((uDebugFile!=NULL)&&(uDebugFile!=stderr)) {
fprintf(uDebugFile,"switching to %s\n",name?name:"stderr");
@@ -166,7 +166,7 @@ uSetDebugFile(char *name)
}
void
-uDebug(char *s,...)
+uDebug(const char *s,...)
{
int i;
va_list ap;
@@ -182,7 +182,7 @@ va_list ap;
}
void
-uDebugNOI(char *s,...)
+uDebugNOI(const char *s,...)
{
va_list ap;
@@ -198,7 +198,7 @@ va_list ap;
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");
@@ -214,7 +214,7 @@ uSetErrorFile(char *name)
}
void
-uInformation(char *s,...)
+uInformation(const char *s,...)
{
va_list ap;
@@ -228,7 +228,7 @@ uInformation(char *s,...)
/***====================================================================***/
void
-uAction(char *s,...)
+uAction(const char *s,...)
{
va_list ap;
@@ -243,7 +243,7 @@ uAction(char *s,...)
/***====================================================================***/
void
-uWarning(char *s,...)
+uWarning(const char *s,...)
{
va_list ap;
@@ -258,7 +258,7 @@ uWarning(char *s,...)
/***====================================================================***/
void
-uError(char *s,...)
+uError(const char *s,...)
{
va_list ap;
@@ -273,7 +273,7 @@ uError(char *s,...)
/***====================================================================***/
void
-uFatalError(char *s,...)
+uFatalError(const char *s,...)
{
va_list ap;
@@ -290,7 +290,7 @@ uFatalError(char *s,...)
/***====================================================================***/
void
-uInternalError(char *s,...)
+uInternalError(const char *s,...)
{
va_list ap;
@@ -306,7 +306,7 @@ uInternalError(char *s,...)
#ifndef HAVE_STRDUP
char *
-uStringDup(char *str)
+uStringDup(const char *str)
{
char *rtrn;
@@ -320,7 +320,7 @@ char *rtrn;
#ifndef HAVE_STRCASECMP
int
-uStrCaseCmp(char *str1, char *str2)
+uStrCaseCmp(const char *str1, const char *str2)
{
char buf1[512],buf2[512];
char c, *s;
@@ -346,7 +346,7 @@ uStrCaseCmp(char *str1, char *str2)
}
int
-uStrCasePrefix(char *prefix, char *str)
+uStrCasePrefix(const char *prefix, const char *str)
{
char c1;
char c2;
diff --git a/utils.h b/utils.h
index c72c312..be2c67c 100644
--- a/utils.h
+++ b/utils.h
@@ -120,13 +120,13 @@ extern void uFree(
/***====================================================================***/
-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, ... );
/***====================================================================***/
@@ -142,19 +142,19 @@ extern void uInternalError ( char *s, ... );
#define uStrCasePrefix(p,s) (strncasecmp(p,s,strlen(p))==0)
#else
extern int uStrCaseCmp(
- char * /* s1 */,
- char * /* s2 */
+ const char * /* s1 */,
+ const char * /* s2 */
);
extern int uStrCasePrefix(
- char * /* p */,
- char * /* str */
+ const char * /* p */,
+ const char * /* str */
);
#endif
#ifdef HAVE_STRDUP
#define uStringDup(s1) (strdup(s1))
#else
extern char *uStringDup(
- char * /* s1 */
+ const char * /* s1 */
);
#endif
@@ -176,10 +176,10 @@ extern char *uStringDup(
extern
unsigned int DEBUG_VAR;
-extern void uDebug( char *s, ... );
-extern void uDebugNOI( char *s, ... ); /* no indent */
+extern void uDebug( const char *s, ... );
+extern void uDebugNOI( const char *s, ... ); /* no indent */
extern Boolean uSetDebugFile(
- char *name
+ const char *name
);
extern FILE *uDebugFile;
extern int uDebugIndentLevel;
@@ -215,11 +215,11 @@ extern int uDebugIndentSize;
#endif
extern Boolean uSetEntryFile(
- char *name
+ const char *name
);
-extern void uEntry(int l, char *s, ... );
+extern void uEntry(int l, const char *s, ... );
extern void uExit(
- int l,char *rtVal
+ int l, const char *rtVal
);
#ifdef ENTRY_TRACKING_ON
#define ENTRY_BIT 0x10