atoll.c 93 B

1234567
  1. #include <stdlib.h>
  2. long long
  3. atoll(const char *s)
  4. {
  5. return(strtoll(s, (char **)0, 10));
  6. }