aboutsummaryrefslogtreecommitdiffstats
path: root/stpcpy.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2004-10-19 21:46:59 +0000
committerMatthias Andree <matthias.andree@gmx.de>2004-10-19 21:46:59 +0000
commit2dd8978a497a9a932c38fc1223ebf2c4ab55f49a (patch)
tree6fc0ade1a0221666429c2b8771cbe89746efa443 /stpcpy.c
parentf8b70c78177ea541eb234655a88cb28480088fba (diff)
downloadfetchmail-2dd8978a497a9a932c38fc1223ebf2c4ab55f49a.tar.gz
fetchmail-2dd8978a497a9a932c38fc1223ebf2c4ab55f49a.tar.bz2
fetchmail-2dd8978a497a9a932c38fc1223ebf2c4ab55f49a.zip
Add replacement stpcpy.
svn path=/trunk/; revision=3947
Diffstat (limited to 'stpcpy.c')
-rw-r--r--stpcpy.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/stpcpy.c b/stpcpy.c
new file mode 100644
index 00000000..a425da59
--- /dev/null
+++ b/stpcpy.c
@@ -0,0 +1,25 @@
+/*
+ stpcpy.c - a strcpy replacement that returns the position of the NUL char
+ Copyright (C) 2004 Matthias Andree
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
+#include <string.h>
+
+char *stpcpy(char *dest, const char *src) {
+ strcpy(dest, src);
+ return strchr(dest, 0);
+}