Sprout/sprout/cstring/strcspn.hpp

19 lines
459 B
C++
Raw Normal View History

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