4#ifndef TETL_CSTRING_STRCMP_HPP
5#define TETL_CSTRING_STRCMP_HPP
7#include <etl/_config/all.hpp>
9#include <etl/_cstddef/size_t.hpp>
10#include <etl/_strings/cstr.hpp>
23#if __has_builtin(__builtin_strcmp)
24 return __builtin_strcmp(lhs, rhs);
26 return etl::detail::strcmp<
char>(lhs, rhs);
constexpr auto strcmp(char const *lhs, char const *rhs) -> int
Compares the C string lhs to the C string rhs.
Definition strcmp.hpp:21
Definition adjacent_find.hpp:9