diff options
Diffstat (limited to 'src/string/str/strchrnul.c')
-rw-r--r-- | src/string/str/strchrnul.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/str/strchrnul.c b/src/string/str/strchrnul.c index 50dedfe..72ae9bc 100644 --- a/src/string/str/strchrnul.c +++ b/src/string/str/strchrnul.c @@ -35,6 +35,8 @@ * @return Pointer to the first occurrence of `c`, * Pointer to the terminating NUL character * if none were found. + * + * @since Always. */ char* (strchrnul)(const char* string, int c) { |