2013-01-12 16:49:11 +00:00
|
|
|
#ifndef SPROUT_LIBS_CSTRING_TEST_MEMCHR_CPP
|
|
|
|
#define SPROUT_LIBS_CSTRING_TEST_MEMCHR_CPP
|
|
|
|
|
|
|
|
#include <sprout/cstring/memchr.hpp>
|
|
|
|
#include <testspr/tools.hpp>
|
|
|
|
|
|
|
|
namespace testspr {
|
|
|
|
static void cstring_memchr_test() {
|
|
|
|
using namespace sprout;
|
|
|
|
{
|
|
|
|
SPROUT_STATIC_CONSTEXPR unsigned char buf[] = "abcdef\0ghij";
|
|
|
|
SPROUT_STATIC_CONSTEXPR unsigned char b = 'h';
|
|
|
|
|
|
|
|
{
|
|
|
|
SPROUT_STATIC_CONSTEXPR auto found = sprout::memchr(buf, b, 12);
|
2013-06-26 15:36:17 +00:00
|
|
|
TESTSPR_BOTH_ASSERT(buf + 8 == found);
|
2013-01-12 16:49:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace testspr
|
|
|
|
|
|
|
|
#ifndef TESTSPR_CPP_INCLUDE
|
|
|
|
# define TESTSPR_TEST_FUNCTION testspr::cstring_memchr_test
|
|
|
|
# include <testspr/include_main.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_LIBS_CSTRING_TEST_MEMCHR_CPP
|