From 1ee6879bdd555a10966781a6de0b6dcc9b8a6e8a Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 3 Jan 2008 12:57:26 +0000 Subject: * include/ruby/ruby.h (st_strcasecmp): declared for STRCASECMP. (st_strncasecmp): declared for STRNCASECMP. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14871 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/ruby.h | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'include/ruby/ruby.h') diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index 35b97fe3d..8addc09bc 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -961,13 +961,6 @@ void rb_add_event_hook(rb_event_hook_func_t func, rb_event_flag_t events, VALUE data); int rb_remove_event_hook(rb_event_hook_func_t func); -#if defined(__cplusplus) -#if 0 -{ /* satisfy cc-mode */ -#endif -} /* extern "C" { */ -#endif - /* locale insensitive functions */ #define rb_isascii(c) ((unsigned long)(c) < 128) @@ -1000,10 +993,19 @@ int rb_toupper(int c); #endif #define TOUPPER(c) rb_toupper((unsigned char)c) #define TOLOWER(c) rb_tolower((unsigned char)c) + +int st_strcasecmp(const char *s1, const char *s2); +int st_strncasecmp(const char *s1, const char *s2, size_t n); #define STRCASECMP(s1, s2) (st_strcasecmp(s1, s2)) #define STRNCASECMP(s1, s2, n) (st_strncasecmp(s1, s2, n)) unsigned long ruby_strtoul(const char *str, char **endptr, int base); #define STRTOUL(str, endptr, base) (ruby_strtoul(str, endptr, base)) +#if defined(__cplusplus) +#if 0 +{ /* satisfy cc-mode */ +#endif +} /* extern "C" { */ +#endif #endif /* RUBY_H */ -- cgit