Sprout/sprout/cstring/strpbrk.hpp

27 lines
665 B
C++
Raw Normal View History

2012-04-01 13:15:09 +00:00
#ifndef SPROUT_CSTRING_STRPBRK_HPP
#define SPROUT_CSTRING_STRPBRK_HPP
#include <cstddef>
#include <sprout/config.hpp>
#include <sprout/cstring/strchr.hpp>
namespace sprout {
// Copyright (C) 2011 RiSK (sscrisk)
// 7.21.5.4 strpbrk <20>֐<EFBFBD>
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR char const*
strpbrk(char const* s1, char const* s2) {
2012-04-01 13:15:09 +00:00
return !*s1 ? nullptr
: sprout::strchr(s2, *s1) ? s1
: sprout::strpbrk(s1 + 1, s2)
;
}
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR char*
strpbrk(char* s1, char const* s2) {
2012-04-01 13:15:09 +00:00
return const_cast<char*>(sprout::strpbrk(const_cast<char const*>(s1), s2));
}
} // namespace sprout
#endif // #ifndef SPROUT_CSTRING_STRPBRK_HPP