autoupdate
[gnulib.git] / modules / strcase
blob4d90a042a5b6941217dc95fc215a4a587c265f9d
1 Description:
2 Case-insensitive string comparison functions.
4 Files:
5 lib/strcasecmp.c
6 lib/strncasecmp.c
7 m4/strcase.m4
9 Depends-on:
10 strings-h
12 configure.ac:
13 gl_STRCASE
14 gl_CONDITIONAL([GL_COND_OBJ_STRCASECMP], [test $HAVE_STRCASECMP = 0])
15 AM_COND_IF([GL_COND_OBJ_STRCASECMP], [
16   gl_PREREQ_STRCASECMP
18 gl_CONDITIONAL([GL_COND_OBJ_STRNCASECMP], [test $HAVE_STRNCASECMP = 0])
19 AM_COND_IF([GL_COND_OBJ_STRNCASECMP], [
20   gl_PREREQ_STRNCASECMP
23 Makefile.am:
24 if GL_COND_OBJ_STRCASECMP
25 lib_SOURCES += strcasecmp.c
26 endif
27 if GL_COND_OBJ_STRNCASECMP
28 lib_SOURCES += strncasecmp.c
29 endif
31 Include:
32 <strings.h>
34 License:
35 LGPLv2+
37 Maintainer:
38 all