From 9c60701e4f39d7039da73e7dd5a36f5edade308a Mon Sep 17 00:00:00 2001 From: ocean Date: Sat, 22 Oct 2005 01:28:00 +0000 Subject: * 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 --- missing.h | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'missing.h') 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 -# else -# include -# endif +# include extern int snprintf(char *, size_t n, char const *, ...); extern int vsnprintf(char *, size_t n, char const *, va_list); #endif -- cgit v1.2.3