aboutsummaryrefslogtreecommitdiff
path: root/src/include/plibc.h
diff options
context:
space:
mode:
authorNils Durner <durner@gnunet.org>2009-11-19 20:02:49 +0000
committerNils Durner <durner@gnunet.org>2009-11-19 20:02:49 +0000
commitfd42933ad64d75140865169dcaadcec3221c5ead (patch)
tree682632f8fbfd4cdc2b6148fa7186780e8d9c8c78 /src/include/plibc.h
parent0bc0cf133b95e2664777be53ff5b39ac428c89cc (diff)
downloadgnunet-fd42933ad64d75140865169dcaadcec3221c5ead.tar.gz
gnunet-fd42933ad64d75140865169dcaadcec3221c5ead.zip
stpcpy()
Diffstat (limited to 'src/include/plibc.h')
-rw-r--r--src/include/plibc.h3
1 files changed, 2 insertions, 1 deletions
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 @@
22 * @brief PlibC header 22 * @brief PlibC header
23 * @attention This file is usually not installed under Unix, 23 * @attention This file is usually not installed under Unix,
24 * so ship it with your application 24 * so ship it with your application
25 * @version $Revision: 44 $ 25 * @version $Revision: 45 $
26 */ 26 */
27 27
28#ifndef _PLIBC_H_ 28#ifndef _PLIBC_H_
@@ -446,6 +446,7 @@ char *strndup (const char *s, size_t n);
446#if !HAVE_STRNLEN 446#if !HAVE_STRNLEN
447size_t strnlen (const char *str, size_t maxlen); 447size_t strnlen (const char *str, size_t maxlen);
448#endif 448#endif
449char *stpcpy(char *dest, const char *src);
449 450
450#define strcasecmp(a, b) stricmp(a, b) 451#define strcasecmp(a, b) stricmp(a, b)
451#define strncasecmp(a, b, c) strnicmp(a, b, c) 452#define strncasecmp(a, b, c) strnicmp(a, b, c)