X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstrcase.h;h=9461392f8d6ade6c8cc4903ab5255cde5e4b0dc0;hb=cbb86267fda18ba3e409e16cf9c460cbbed1846c;hp=f17e64832ff1bd22565ab3c135253dee2752358c;hpb=6a638f79ae2db9683afa6925c4ca61e0b29614f0;p=gnulib.git diff --git a/lib/strcase.h b/lib/strcase.h index f17e64832..9461392f8 100644 --- a/lib/strcase.h +++ b/lib/strcase.h @@ -20,6 +20,12 @@ #include + +#ifdef __cplusplus +extern "C" { +#endif + + /* Compare strings S1 and S2, ignoring case, returning less than, equal to or greater than zero if S1 is lexicographically less than, equal to or greater than S2. @@ -32,4 +38,10 @@ extern int strcasecmp (const char *s1, const char *s2); Note: This function can not work correctly in multibyte locales. */ extern int strncasecmp (const char *s1, const char *s2, size_t n); + +#ifdef __cplusplus +} +#endif + + #endif /* _STRCASE_H */