From: Nils Durner Date: Thu, 19 Nov 2009 20:02:49 +0000 (+0000) Subject: stpcpy() X-Git-Tag: initial-import-from-subversion-38251~23053 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fd42933ad64d75140865169dcaadcec3221c5ead;p=oweals%2Fgnunet.git stpcpy() --- diff --git a/src/include/plibc.h b/src/include/plibc.h index dd880eebf..06db48c04 100644 --- a/src/include/plibc.h +++ b/src/include/plibc.h @@ -22,7 +22,7 @@ * @brief PlibC header * @attention This file is usually not installed under Unix, * so ship it with your application - * @version $Revision: 44 $ + * @version $Revision: 45 $ */ #ifndef _PLIBC_H_ @@ -446,6 +446,7 @@ char *strndup (const char *s, size_t n); #if !HAVE_STRNLEN size_t strnlen (const char *str, size_t maxlen); #endif +char *stpcpy(char *dest, const char *src); #define strcasecmp(a, b) stricmp(a, b) #define strncasecmp(a, b, c) strnicmp(a, b, c)