summaryrefslogtreecommitdiffstats
path: root/lib/get_gid.c
blob: 2420137bc8b793cf4496198f7e4dd0d6da30d5a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * SPDX-FileCopyrightText: 2009       , Nicolas François
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */


#include <config.h>

#ident "$Id$"

#include "prototypes.h"
#include "defines.h"


int
get_gid(const char *gidstr, gid_t *gid)
{
	char       *end;
	long long  val;

	errno = 0;
	val = strtoll(gidstr, &end, 10);
	if (   ('\0' == *gidstr)
	    || ('\0' != *end)
	    || (0 != errno)
	    || (/*@+longintegral@*/val != (gid_t)val)/*@=longintegral@*/) {
		return -1;
	}

	*gid = val;
	return 0;
}