#include "internal.h" int str·atoi(char *s) { int n = 0; while(*s) n = 10*n + (*s++ - '0'); return n; }