f85a07f140
Implement it as an inline function, and add restrict and ATTR_STRING() and ATTR_ACCESS() as appropriate. Reviewed-by: "Serge E. Hallyn" <serge@hallyn.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
32 lines
675 B
C
32 lines
675 B
C
// SPDX-FileCopyrightText: 2009, Nicolas François
|
|
// SPDX-FileCopyrightText: 2023-2024, Alejandro Colomar <alx@kernel.org>
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
#ifndef SHADOW_INCLUDE_LIB_ATOI_GETNUM_H_
|
|
#define SHADOW_INCLUDE_LIB_ATOI_GETNUM_H_
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stddef.h>
|
|
#include <sys/types.h>
|
|
|
|
#include "atoi/a2i.h"
|
|
#include "attr.h"
|
|
#include "typetraits.h"
|
|
|
|
|
|
ATTR_STRING(1) ATTR_ACCESS(write_only, 2)
|
|
inline int get_gid(const char *restrict gidstr, gid_t *restrict gid);
|
|
|
|
|
|
inline int
|
|
get_gid(const char *restrict gidstr, gid_t *restrict gid)
|
|
{
|
|
return a2i(gid_t, gid, gidstr, NULL, 10, type_min(gid_t), type_max(gid_t));
|
|
}
|
|
|
|
|
|
#endif // include guard
|