Hey Guys,

Trying to create a case switch for my separate functions...

Here it is:
Code:
switch(i)
	    { 
	    case 0: IScd(int argc, char *argv[]); break;
	    case 1: IShelp();break;
	    case 2: kill_main(int argc, char *argv[]); break;
	    case 3: ISls(args); break;
	    case 4: ISps(); break;
	    case 5: ISpwd(); break;
	    default: break;
	     }
All the functions are there BUT it wont compile: error: syntax error before "int"....

Any ideas?

I think Im doing it right...