atoll.c 87 B

12345678
  1. #include <u.h>
  2. #include <libc.h>
  3. vlong
  4. atoll(char *s)
  5. {
  6. return strtoll(s, nil, 0);
  7. }