#include <stdlib.h>
int main(int argc, char **argv)
{
int a, b;
if (argc != 3)
return 1;
a = strtol(argv[1], (char**)NULL, 10);
b = strtol(argv[2], (char**)NULL, 10);
return b ? a / b : 0;
}
oh, and i've got a job. starting Jan 02.
Update [2006-12-21 19:38:15 by i]:atoi is bad, using strtol instead. the question remains: is this code safe?
| < "Tower Records in Tokyo" | BBC White season: 'Rivers of Blood' > |

