diff options
Diffstat (limited to 'src/string/str/strstr.c')
-rw-r--r-- | src/string/str/strstr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/str/strstr.c b/src/string/str/strstr.c index dadbc73..9f88cb4 100644 --- a/src/string/str/strstr.c +++ b/src/string/str/strstr.c @@ -27,6 +27,8 @@ * @param needle The sought after substring. * @return Pointer to the first occurrence of the * substring, `NULL` if not found. + * + * @since Always. */ char* (strstr)(const char* haystack, const char* needle) { |