2 ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 ** Distributed under the terms of the Haiku License.
11 /* This is not a POSIX function, but since BeOS exports it, we need to, as well. */
14 stpcpy(char *dest
, char const *src
)
16 while ((*dest
++ = *src
++) != '\0')