This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
piquant/tests/stdlib_atoi.c

11 lines
198 B
C
Raw Normal View History

#include "types.h"
2016-03-27 12:07:53 -07:00
#include "stdlib.h"
int main(void)
{
if ( atoi("1234\0") != 1234 ) return 1;
if ( atoi("65536\0") != 65536 ) return 2;
if ( atoi("-32767\0") != 0 ) return 3;
2016-03-27 12:07:53 -07:00
return 0;
}