strstr, strcasestr: replace on platforms with broken memchr
[gnulib.git] / modules / argz
1 Description:
2 Argv style string arrays in a single null delimited char*.
3
4 Files:
5 lib/argz.in.h
6 lib/argz.c
7 m4/argz.m4
8
9 Depends-on:
10 memmove
11 mempcpy
12 stpcpy
13 strndup
14 strnlen
15 strstr
16
17 configure.ac:
18 gl_FUNC_ARGZ
19
20 Makefile.am:
21 BUILT_SOURCES += $(ARGZ_H)
22
23 # We need the following in order to create <argz.h> when the system
24 # doesn't have one that works with the given compiler.
25 argz.h: argz.in.h
26         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
27           cat $(srcdir)/argz.in.h; \
28         } > $@-t
29         mv -f $@-t $@
30 MOSTLYCLEANFILES += argz.h argz.h-t
31
32 Include:
33 <argz.h>
34
35 License:
36 LGPLv2+
37
38 Maintainer:
39 all