diff options
Diffstat (limited to 'src/string/str/strcat.c')
-rw-r--r-- | src/string/str/strcat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/str/strcat.c b/src/string/str/strcat.c index de5c63e..ec3cbe7 100644 --- a/src/string/str/strcat.c +++ b/src/string/str/strcat.c @@ -28,6 +28,8 @@ * @param whither The string to extend. * @param whence The string to append. * @return `whither` is returned. + * + * @since Always. */ char* strcat(char* restrict whither, const char* restrict whence) { |