view modules/strcase @ 15605:4c5e88ae3604

strcase: Support for MSVC. * modules/strcase (Status, Notice): Remove obsoletion mark. * doc/posix-functions/strcasecmp.texi: Mention MSVC problem. * doc/posix-functions/strncasecmp.texi: Likewise.
author Bruno Haible <bruno@clisp.org>
date Sun, 11 Sep 2011 21:23:39 +0200
parents cd153bca26fc
children 1f14c6dd175d
line wrap: on
line source

Description:
Case-insensitive string comparison functions.

Files:
lib/strcasecmp.c
lib/strncasecmp.c
m4/strcase.m4

Depends-on:
strings

configure.ac:
gl_STRCASE
if test $HAVE_STRCASECMP = 0; then
  AC_LIBOBJ([strcasecmp])
  gl_PREREQ_STRCASECMP
fi
if test $HAVE_STRNCASECMP = 0; then
  AC_LIBOBJ([strncasecmp])
  gl_PREREQ_STRNCASECMP
fi

Makefile.am:

Include:
<strings.h>

License:
LGPLv2+

Maintainer:
Bruno Haible