1 2 3 4 5 6 7 8
#ifndef MY_STRSPN_H #define MY_STRSPN_H #include <stddef.h> size_t my_strspn(const char *s, const char *accept); #endif /* ! MY_STRSPN_H */