2000-02-17 19:39:52 +00:00
|
|
|
/*
|
|
|
|
FUNCTION
|
|
|
|
<<atoi>>, <<atol>>---string to integer
|
|
|
|
|
|
|
|
INDEX
|
|
|
|
atoi
|
|
|
|
INDEX
|
|
|
|
atol
|
2003-11-27 20:54:12 +00:00
|
|
|
INDEX
|
|
|
|
_atoi_r
|
|
|
|
INDEX
|
|
|
|
_atol_r
|
2000-02-17 19:39:52 +00:00
|
|
|
|
2017-11-30 02:17:18 -06:00
|
|
|
SYNOPSIS
|
2000-02-17 19:39:52 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
int atoi(const char *<[s]>);
|
|
|
|
long atol(const char *<[s]>);
|
2003-11-27 20:54:12 +00:00
|
|
|
int _atoi_r(struct _reent *<[ptr]>, const char *<[s]>);
|
|
|
|
long _atol_r(struct _reent *<[ptr]>, const char *<[s]>);
|
2000-02-17 19:39:52 +00:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
<<atoi>> converts the initial portion of a string to an <<int>>.
|
|
|
|
<<atol>> converts the initial portion of a string to a <<long>>.
|
|
|
|
|
|
|
|
<<atoi(s)>> is implemented as <<(int)strtol(s, NULL, 10).>>
|
|
|
|
<<atol(s)>> is implemented as <<strtol(s, NULL, 10).>>
|
|
|
|
|
2003-11-27 20:54:12 +00:00
|
|
|
<<_atoi_r>> and <<_atol_r>> are reentrant versions of <<atoi>> and
|
|
|
|
<<atol>> respectively, passing the reentrancy struct pointer.
|
|
|
|
|
2000-02-17 19:39:52 +00:00
|
|
|
RETURNS
|
|
|
|
The functions return the converted value, if any. If no conversion was
|
|
|
|
made, <<0>> is returned.
|
|
|
|
|
|
|
|
PORTABILITY
|
2003-11-27 20:54:12 +00:00
|
|
|
<<atoi>>, <<atol>> are ANSI.
|
2000-02-17 19:39:52 +00:00
|
|
|
|
|
|
|
No supporting OS subroutines are required.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Andy Wilson, 2-Oct-89.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <_ansi.h>
|
|
|
|
|
2003-11-27 20:54:12 +00:00
|
|
|
#ifndef _REENT_ONLY
|
2000-02-17 19:39:52 +00:00
|
|
|
int
|
2017-12-03 21:43:30 -06:00
|
|
|
atoi (const char *s)
|
2000-02-17 19:39:52 +00:00
|
|
|
{
|
|
|
|
return (int) strtol (s, NULL, 10);
|
|
|
|
}
|
2003-11-27 20:54:12 +00:00
|
|
|
#endif /* !_REENT_ONLY */
|
|
|
|
|
|
|
|
int
|
2017-12-03 21:43:30 -06:00
|
|
|
_atoi_r (struct _reent *ptr,
|
2017-12-03 20:25:16 -06:00
|
|
|
const char *s)
|
2003-11-27 20:54:12 +00:00
|
|
|
{
|
|
|
|
return (int) _strtol_r (ptr, s, NULL, 10);
|
|
|
|
}
|
2000-02-17 19:39:52 +00:00
|
|
|
|