Move stpcpy replacement function into libbb
Signed-off-by: Dan Fandrich <dan@coneharvesters.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
committed by
Denys Vlasenko
parent
4ed3c52ce9
commit
dc50676cce
@@ -134,3 +134,14 @@ char* FAST_FUNC strsep(char **stringp, const char *delim)
|
||||
return start;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_STPCPY
|
||||
char* FAST_FUNC stpcpy(char *p, const char *to_add)
|
||||
{
|
||||
while ((*p = *to_add) != '\0') {
|
||||
p++;
|
||||
to_add++;
|
||||
}
|
||||
return p;
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user