Newer
Older
ubix2 / src / lib / libc_old / stdlib / atoi.c
@reddawg reddawg on 1 Jun 2006 99 bytes ubix2
#include <stdlib.h>

int atoi(const char *str) {
  return (int)strtol(str, (char **)NULL, 10);
  }