Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/waterbox/libc/functions/stdlib/atoll.c
2 views
1
/* atoll( const char * )
2
3
This file is part of the Public Domain C Library (PDCLib).
4
Permission is granted to use, modify, and / or redistribute at will.
5
*/
6
7
#include <stdlib.h>
8
9
#ifndef REGTEST
10
11
long long int atoll( const char * s )
12
{
13
return (long long int) _PDCLIB_atomax( s );
14
}
15
16
#endif
17
18
#ifdef TEST
19
#include "_PDCLIB_test.h"
20
21
int main( void )
22
{
23
/* no tests for a simple wrapper */
24
return TEST_RESULTS;
25
}
26
27
#endif
28
29