14 lines
503 B
C
14 lines
503 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/str2s.h"
|
|
|
|
|
|
extern inline int str2sh(short *restrict n, const char *restrict s);
|
|
extern inline int str2si(int *restrict n, const char *restrict s);
|
|
extern inline int str2sl(long *restrict n, const char *restrict s);
|
|
extern inline int str2sll(long long *restrict n, const char *restrict s);
|