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