4#ifndef TETL_CSTDLIB_ATOI_HPP
5#define TETL_CSTDLIB_ATOI_HPP
7#include <etl/_strings/to_integer.hpp>
constexpr auto to_integer(string_view str, Int base=Int(10)) noexcept -> to_integer_result< Int >
Definition to_integer.hpp:98
Definition adjacent_find.hpp:9
constexpr auto atoi(char const *str) noexcept -> int
Interprets an integer value in a byte string pointed to by str. Discards any whitespace characters un...
Definition atoi.hpp:15