summaryrefslogtreecommitdiff
path: root/src/string/strcpy.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2020-08-16 14:00:51 -0400
committerJakob Kaivo <jkk@ung.org>2020-08-16 14:00:51 -0400
commit896e28812c51b9ffdf3efc00c7d7ef699e380a58 (patch)
treeaaa25e093fb4a2ac4c57609e1f745e5ac0734ca8 /src/string/strcpy.c
parent0b0d1fe1d4fbf8560577d81e5af0549683eac8ba (diff)
formatting
Diffstat (limited to 'src/string/strcpy.c')
-rw-r--r--src/string/strcpy.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/strcpy.c b/src/string/strcpy.c
index ea8a9a1f..b6e3ed11 100644
--- a/src/string/strcpy.c
+++ b/src/string/strcpy.c
@@ -2,6 +2,7 @@
#include "_assert.h"
/** copy string **/
+
char * strcpy(char * restrict s1, const char * restrict s2)
{
char *p = s1;
@@ -24,6 +25,7 @@ char * strcpy(char * restrict s1, const char * restrict s2)
copies the string at ARGUMENT(s2) to ARGUMENT(s1), up to and
including the terminating CHAR(\0).
***/
+
/*
STDC(1)
*/