1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-08-08 17:22:05 +03:00
Files
gnulib/modules/iswpunct
Bruno Haible 9753b53d66 iswpunct: New module.
* lib/wctype.in.h (iswpunct): New declaration.
* lib/iswpunct.c: New file.
* m4/iswpunct.m4: New file.
* m4/wctype_h.m4 (gl_WCTYPE_H_REQUIRE_DEFAULTS): Initialize
GNULIB_ISWPUNCT.
(gl_WCTYPE_H_DEFAULTS): Initialize REPLACE_ISWPUNCT.
* modules/wctype-h (Makefile.am): Substitute GNULIB_ISWPUNCT,
REPLACE_ISWPUNCT.
* modules/iswpunct: New file.
* doc/posix-functions/iswpunct.texi: Mention the new module.
2023-08-30 02:18:20 +02:00

31 lines
513 B
Plaintext

Description:
iswpunct() function: test wide character for being a punctuation or symbol
character.
Files:
lib/iswpunct.c
m4/iswpunct.m4
Depends-on:
wctype-h
configure.ac:
gl_FUNC_ISWPUNCT
gl_CONDITIONAL([GL_COND_OBJ_ISWPUNCT],
[! { test $HAVE_ISWCNTRL = 0 || test $REPLACE_ISWCNTRL = 1; } && test $REPLACE_ISWPUNCT = 1])
gl_WCTYPE_MODULE_INDICATOR([iswpunct])
Makefile.am:
if GL_COND_OBJ_ISWPUNCT
lib_SOURCES += iswpunct.c
endif
Include:
<wctype.h>
License:
LGPLv2+
Maintainer:
Bruno Haible