1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-08-14 14:01:48 +03:00
Files
gnulib/modules/memset
Paul Eggert b8c7161012 ctype, string: depend on extern-inline
This is needed to complete the recent OS X fixes.
Also, fix related documentation as suggested by Eric Blake.
* doc/posix-functions/isalnum.texi, doc/posix-functions/isalpha.texi:
* doc/posix-functions/isascii.texi, doc/posix-functions/iscntrl.texi:
* doc/posix-functions/isdigit.texi, doc/posix-functions/isgraph.texi:
* doc/posix-functions/islower.texi, doc/posix-functions/isprint.texi:
* doc/posix-functions/ispunct.texi, doc/posix-functions/isspace.texi:
* doc/posix-functions/isupper.texi, doc/posix-functions/isxdigit.texi:
* doc/posix-functions/toascii.texi, doc/posix-functions/tolower.texi:
* doc/posix-functions/toupper.texi:
List the 'ctype' gnulib module.
* doc/posix-functions/strcat.texi, doc/posix-functions/strcpy.texi:
* doc/posix-functions/strncpy.texi:
List the 'string' gnulib module.
* modules/memcpy, modules/memmove, modules/memset (Depends-on):
Add string.
* modules/ctype, modules/string (Depends-on): Add extern-inline.
2013-09-22 21:26:01 -07:00

34 lines
363 B
Plaintext

Description:
memset() function: fill memory with a constant byte.
Status:
obsolete
Notice:
This module is obsolete.
Files:
lib/memset.c
m4/memset.m4
Depends-on:
string
configure.ac:
gl_FUNC_MEMSET
if test $ac_cv_func_memset = no; then
AC_LIBOBJ([memset])
gl_PREREQ_MEMSET
fi
Makefile.am:
Include:
<string.h>
License:
LGPLv2+
Maintainer:
Jim Meyering