X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fstrcase.h;h=a51ed9aa9abb7fd6912e2e4238f66c36d036a77e;hb=9df4453b386268b137f71b0e9548f67e03565dd4;hp=f17e64832ff1bd22565ab3c135253dee2752358c;hpb=6a638f79ae2db9683afa6925c4ca61e0b29614f0;p=gnulib.git diff --git a/lib/strcase.h b/lib/strcase.h index f17e64832..a51ed9aa9 100644 --- a/lib/strcase.h +++ b/lib/strcase.h @@ -13,13 +13,19 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _STRCASE_H #define _STRCASE_H #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 */