here is my partial code:

Code:
int main(int argc, char *argv[])
{

	// make sure that there is at least 1 argument
	if (argc < 2) {
		usage();
	}

	switch (*argc[0]) 
	{
		case "-i":
			myFunction(argc[0]);
i get many errors. i am trying to input the arguments as strings, and use the arguments in myFunction that i am calling within the switch, any helpful hints?