libposix: Revert the unreviewed part of yesterday's big merge.
[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         $(AM_V_GEN)rm -f $@-t $@ && \
27         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
28           cat $(srcdir)/argz.in.h; \
29         } > $@-t && \
30         mv -f $@-t $@
31 MOSTLYCLEANFILES += argz.h argz.h-t
32
33 Include:
34 <argz.h>
35
36 License:
37 LGPLv2+
38
39 Maintainer:
40 all