blob: 66c481d691b1d9618e37a8b96bf1f54b4e30a688 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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
|