verify: new macro 'assume'
[gnulib.git] / modules / ctype
1 Description:
2 A <ctype.h> that conforms to C99.
3
4 Files:
5 lib/ctype.in.h
6 m4/ctype.m4
7
8 Depends-on:
9 extern-inline
10 include_next
11 snippet/c++defs
12 snippet/warn-on-use
13
14 configure.ac:
15 gl_CTYPE_H
16
17 Makefile.am:
18 BUILT_SOURCES += ctype.h
19
20 # We need the following in order to create <ctype.h> when the system
21 # doesn't have one that works with the given compiler.
22 ctype.h: ctype.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(WARN_ON_USE_H)
23         $(AM_V_GEN)rm -f $@-t $@ && \
24         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
25           sed -e 's|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|g' \
26               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
27               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
28               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
29               -e 's|@''NEXT_CTYPE_H''@|$(NEXT_CTYPE_H)|g' \
30               -e 's/@''GNULIB_ISBLANK''@/$(GNULIB_ISBLANK)/g' \
31               -e 's/@''HAVE_ISBLANK''@/$(HAVE_ISBLANK)/g' \
32               -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
33               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
34               < $(srcdir)/ctype.in.h; \
35         } > $@-t && \
36         mv $@-t $@
37 MOSTLYCLEANFILES += ctype.h ctype.h-t
38
39 Include:
40 <ctype.h>
41
42 License:
43 LGPLv2+
44
45 Maintainer:
46 Bruno Haible