Sprout/sprout/cwchar/wcschr.hpp

26 lines
535 B
C++
Raw Normal View History

#ifndef SPROUT_CWCHAR_WCSCHR_HPP
#define SPROUT_CWCHAR_WCSCHR_HPP
#include <cstddef>
#include <sprout/config.hpp>
2013-01-12 16:16:48 +00:00
#include <sprout/cstring/strchr.hpp>
namespace sprout {
2013-01-12 16:16:48 +00:00
//
// wcschr
//
// recursion depth:
// O(log N)
//
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR wchar_t const*
2013-01-12 16:16:48 +00:00
wcschr(wchar_t const* s, wchar_t c) {
return sprout::strchr(s, c);
}
2012-10-05 15:58:56 +00:00
inline SPROUT_CONSTEXPR wchar_t*
2013-01-12 16:16:48 +00:00
wcschr(wchar_t* s, wchar_t c) {
return sprout::strchr(s, c);
}
} // namespace sprout
#endif // #ifndef SPROUT_CWCHAR_WCSCHR_HPP