diff options
Diffstat (limited to 'src/string/str/strpbrk.c')
-rw-r--r-- | src/string/str/strpbrk.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/str/strpbrk.c b/src/string/str/strpbrk.c index e479dae..4cfb9ed 100644 --- a/src/string/str/strpbrk.c +++ b/src/string/str/strpbrk.c @@ -30,6 +30,8 @@ * @return A pointer to the first occurrence in * `string` of a byte found in `stopset`. * `NULL` is returned if none is found. + * + * @since Always. */ char* (strpbrk)(const char* string, const char* stopset) { |