2012-04-01 13:15:09 +00:00
|
|
|
|
#ifndef SPROUT_CSTRING_STRSPN_HPP
|
2012-12-21 16:02:49 +00:00
|
|
|
|
#define SPROUT_CSTRING_STRSPN_HPP
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
|
#include <sprout/cstring/strchr.hpp>
|
|
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
|
// 7.21.5.6 strspn <20><EFBFBD>
|
2012-10-05 15:58:56 +00:00
|
|
|
|
inline SPROUT_CONSTEXPR std::size_t
|
|
|
|
|
strspn(char const* s1, char const* s2) {
|
2012-12-21 16:02:49 +00:00
|
|
|
|
return !*s1 || !sprout::strchr(s2, *s1) ? 0
|
|
|
|
|
: 1 + sprout::strspn(s1 + 1, s2)
|
|
|
|
|
;
|
2012-04-01 13:15:09 +00:00
|
|
|
|
}
|
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
2012-12-21 16:02:49 +00:00
|
|
|
|
#endif // #ifndef SPROUT_CSTRING_STRSPN_HPP
|