]> pd.if.org Git - pdclib/blob - functions/stdlib/atol.c
Porting current working set from CVS.
[pdclib] / functions / stdlib / atol.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* atol( const char * )
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 #include <stdlib.h>
12
13 #ifndef REGTEST
14
15 long int atol( const char * s )
16 {
17     return (long int) _PDCLIB_atomax( s );
18 }
19
20 #endif
21
22 #ifdef TEST
23 #include <_PDCLIB_test.h>
24
25 int main( void )
26 {
27     /* no tests for a simple wrapper */
28     return TEST_RESULTS;
29 }
30
31 #endif