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