Name: Anonymous 2009-05-24 9:14
what the fast way to check that string contain only characters within some set like "a-z0-9"?
int main
(
int argc, char **argv
)
{
int i = 1;
while
(
i < argv
)
{
printf("%s", argc[i]);
++i;
}
return 0;
}