ES2 MUD LIB :: 東方故事二(ES2) 天朝帝國 mudlib 瀏覽展示

/adm/simul_efun/atoi.c

HOME :: adm :: simul_efun :: atoi.c
// atoi.c

int atoi(string str)
{
int v;

if( !stringp(str) || !sscanf(str, "%d", v) ) return 0;
return v;
}
HOME :: adm :: simul_efun :: atoi.c