diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-16 14:00:51 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-16 14:00:51 -0400 |
commit | 896e28812c51b9ffdf3efc00c7d7ef699e380a58 (patch) | |
tree | aaa25e093fb4a2ac4c57609e1f745e5ac0734ca8 /src/string/memmove.c | |
parent | 0b0d1fe1d4fbf8560577d81e5af0549683eac8ba (diff) |
formatting
Diffstat (limited to 'src/string/memmove.c')
-rw-r--r-- | src/string/memmove.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/memmove.c b/src/string/memmove.c index 5d72c862..c9ae1245 100644 --- a/src/string/memmove.c +++ b/src/string/memmove.c @@ -2,6 +2,7 @@ #include "_assert.h" /** move memory **/ + void * memmove(void *s1, const void *s2, size_t n) { ASSERT_NONNULL(s1); @@ -30,6 +31,7 @@ copies ARGUMENT(n) bytes of memory from the object at ARGUMENT(s2) to the object at ARGUMENT(s1). If ARGUMENT(s1) and ARGUMENT(s2) overlap, the memory is copied so that the ARGUMENT(n) bytes are safely written to ARGUMENT(s1). ***/ + /* STDC(1) */ |