diff options
Diffstat (limited to 'src/string/str/stpcpy.c')
-rw-r--r-- | src/string/str/stpcpy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/str/stpcpy.c b/src/string/str/stpcpy.c index a0d5f79..c643d77 100644 --- a/src/string/str/stpcpy.c +++ b/src/string/str/stpcpy.c @@ -26,6 +26,8 @@ * @param whither The destination memory segment. * @param whence The source memory segment. * @return `whither + strlen(whence)` is returned. + * + * @since Always. */ char* stpcpy(char* restrict whither, const char* restrict whence) { |