diff options
Diffstat (limited to 'src/string/str/strspn.c')
-rw-r--r-- | src/string/str/strspn.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/str/strspn.c b/src/string/str/strspn.c index 1b2e034..8a648ff 100644 --- a/src/string/str/strspn.c +++ b/src/string/str/strspn.c @@ -27,6 +27,8 @@ * @param string The string. * @param skipset Bytes allowed in the substring. * @return The length of the substring. + * + * @since Always. */ size_t strspn(const char* string, const char* skipset) { |