#ifndef SPROUT_CSTRING_STRCSPN_HPP #define SPROUT_CSTRING_STRCSPN_HPP #include #include #include namespace sprout { // 7.21.5.3 strcspn ֐ inline SPROUT_CONSTEXPR std::size_t strcspn(char const* s1, char const* s2) { return !*s1 || sprout::strchr(s2, *s1) ? 0 : 1 + sprout::strcspn(s1 + 1, s2) ; } } // namespace sprout #endif // #ifndef SPROUT_CSTRING_STRCSPN_HPP