mirror of
https://github.com/shadow-maint/shadow.git
synced 2024-11-23 18:14:07 +08:00
71e28359d1
All call sites have been replaced by functions from "atoi/a2i.h" and "atoi/str2i.h" recently. Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
14 lines
327 B
C
14 lines
327 B
C
// SPDX-FileCopyrightText: 2023, Alejandro Colomar <alx@kernel.org>
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include "atoi/strtou_noneg.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
extern inline uintmax_t strtou_noneg(const char *s, char **restrict endp,
|
|
int base, uintmax_t min, uintmax_t max, int *restrict status);
|