14 lines
539 B
C
14 lines
539 B
C
// SPDX-FileCopyrightText: 2007-2009, Nicolas François
|
|
// SPDX-FileCopyrightText: 2023-2024, Alejandro Colomar <alx@kernel.org>
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include "atoi/str2i/str2u.h"
|
|
|
|
|
|
extern inline int str2uh(unsigned short *restrict n, const char *restrict s);
|
|
extern inline int str2ui(unsigned int *restrict n, const char *restrict s);
|
|
extern inline int str2ul(unsigned long *restrict n, const char *restrict s);
|
|
extern inline int str2ull(unsigned long long *restrict n, const char *restrict s);
|