int tsmGetArgInt ( int argc, char **argv, char *arg, int *value ) Get the integer after an option on the command line
Get the integer after an option on the command line.This function will take the argc and argv variables that were passed to an application's main() function and will then test to see if a specific option string was supplied in the command line. If it is found, then the string directly after that option is converted to an integer value and returned.
The string comparison is case sensitive.