mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
3a9dccd76e
Add atoi, atol, atoll. These versions call strtol/strtoll with base==0. The Unix versions use base==10.
9 lines
86 B
C
9 lines
86 B
C
#include <u.h>
|
|
#include <libc.h>
|
|
|
|
vlong
|
|
atoll(char *s)
|
|
{
|
|
return strtoll(s, 0, 0);
|
|
}
|
|
|