summaryrefslogtreecommitdiff
path: root/missing.h
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-22 01:28:00 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-22 01:28:00 +0000
commit9c60701e4f39d7039da73e7dd5a36f5edade308a (patch)
tree3475fe7f783e96106c803fca0c28620dd27e9f2f /missing.h
parent1a61008f18e651ef8848813a34cdebd6d8fd5eba (diff)
* missing.h, missing/*.c: SUSv3 compatible strcasecmp and strncasecmp,
ANSI compatible strtol and strtoul, and ANSI styled other functions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing.h')
-rw-r--r--missing.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/missing.h b/missing.h
index 3703c00309..675d0d5e17 100644
--- a/missing.h
+++ b/missing.h
@@ -91,11 +91,11 @@ extern double modf(double, double *);
*/
#ifndef HAVE_STRCASECMP
-extern int strcasecmp(char *, char *);
+extern int strcasecmp(const char *, const char *);
#endif
#ifndef HAVE_STRNCASECMP
-extern int strncasecmp(char *, char *, int);
+extern int strncasecmp(const char *, const char *, size_t);
#endif
#ifndef HAVE_STRCHR
@@ -117,20 +117,16 @@ extern char *strstr(const char *, const char *);
/*
#ifndef HAVE_STRTOL
-extern long strtol(char *, char **, int);
+extern long strtol(const char *, char **, int);
#endif
*/
#ifndef HAVE_STRTOUL
-extern unsigned long strtoul(char *, char **, int);
+extern unsigned long strtoul(const char *, char **, int);
#endif
#ifndef HAVE_VSNPRINTF
-# ifdef HAVE_STDARG_PROTOTYPES
-# include <stdarg.h>
-# else
-# include <varargs.h>
-# endif
+# include <stdarg.h>
extern int snprintf(char *, size_t n, char const *, ...);
extern int vsnprintf(char *, size_t n, char const *, va_list);
#endif