2007-11-24 01:39:57 +05:30
|
|
|
/*
|
2009-03-09 01:51:24 +05:30
|
|
|
* Copyright (c) 2007 - 2009, Nicolas François
|
2007-11-24 01:39:57 +05:30
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2008-04-27 06:10:09 +05:30
|
|
|
* 3. The name of the copyright holders or contributors may not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
2007-11-24 01:39:57 +05:30
|
|
|
*
|
2008-04-27 06:10:09 +05:30
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
|
|
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2007-11-24 01:39:57 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2008-04-17 03:33:43 +05:30
|
|
|
#ident "$Id$"
|
2007-11-24 01:39:57 +05:30
|
|
|
|
2009-04-11 04:04:17 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
2007-11-24 01:39:57 +05:30
|
|
|
#include "prototypes.h"
|
|
|
|
|
2009-04-15 23:20:17 +05:30
|
|
|
/*
|
|
|
|
* getlong - extract a long integer provided by the numstr string in *result
|
|
|
|
*
|
|
|
|
* It supports decimal, hexadecimal or octal representations.
|
|
|
|
*
|
|
|
|
* Returns 0 on failure, 1 on success.
|
|
|
|
*/
|
* libmisc/xgetXXbyYY.c, libmisc/myname.c, libmisc/getgr_nam_gid.c,
libmisc/salt.c, libmisc/list.c, libmisc/cleanup.c, src/login.c,
lib/getdef.h, lib/groupio.c, lib/getlong.c, lib/gshadow_.h,
lib/sgroupio.c, lib/shadowio.c, lib/pwio.c, lib/commonio.h,
lib/fputsx.c, lib/prototypes.h: Added splint annotations.
* lib/groupio.c: Avoid implicit conversion of pointers to
booleans.
* lib/groupio.c: Free allocated buffers in case of failure.
2009-04-23 15:27:03 +05:30
|
|
|
int getlong (const char *numstr, /*@out@*/long int *result)
|
2007-11-24 01:39:57 +05:30
|
|
|
{
|
|
|
|
long val;
|
|
|
|
char *endptr;
|
|
|
|
|
2008-06-15 02:32:52 +05:30
|
|
|
errno = 0;
|
2009-04-15 23:20:17 +05:30
|
|
|
val = strtol (numstr, &endptr, 0);
|
2009-04-25 04:57:12 +05:30
|
|
|
if (('\0' == *numstr) || ('\0' != *endptr) || (ERANGE == errno)) {
|
2007-11-24 01:39:57 +05:30
|
|
|
return 0;
|
2008-05-26 04:55:33 +05:30
|
|
|
}
|
2007-11-24 01:39:57 +05:30
|
|
|
|
|
|
|
*result = val;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|