Newer
Older
UbixOS / src / lib / libc_old / stdlib / atoi.c
@Charlie Root Charlie Root on 31 Dec 2017 99 bytes Sync
#include <stdlib.h>

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