34 lines
497 B
Plaintext
34 lines
497 B
Plaintext
Description:
|
|
stpcpy() function: copy a string, returning a pointer to its end.
|
|
|
|
Files:
|
|
lib/stpcpy.c
|
|
m4/stpcpy.m4
|
|
|
|
Depends-on:
|
|
extensions
|
|
string
|
|
|
|
configure.ac:
|
|
gl_FUNC_STPCPY
|
|
gl_CONDITIONAL([GL_COND_OBJ_STPCPY],
|
|
[test $HAVE_STPCPY = 0 || test $REPLACE_STPCPY = 1])
|
|
AM_COND_IF([GL_COND_OBJ_STPCPY], [
|
|
gl_PREREQ_STPCPY
|
|
])
|
|
gl_STRING_MODULE_INDICATOR([stpcpy])
|
|
|
|
Makefile.am:
|
|
if GL_COND_OBJ_STPCPY
|
|
lib_SOURCES += stpcpy.c
|
|
endif
|
|
|
|
Include:
|
|
<string.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
glibc
|