1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00
Sprout/sprout/cstring/strchr.hpp

26 lines
596 B
C++
Raw Normal View History

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