diff options
Diffstat (limited to 'src/string/str/strrchr.c')
-rw-r--r-- | src/string/str/strrchr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/str/strrchr.c b/src/string/str/strrchr.c index 716a442..1933765 100644 --- a/src/string/str/strrchr.c +++ b/src/string/str/strrchr.c @@ -35,6 +35,8 @@ * @param c The sought after character. * @return Pointer to the last occurrence of `c`, * `NULL` if none were found. + * + * @since Always. */ char* (strrchr)(const char* string, int c) { |