int tsmGetArgFloat ( int argc, char **argv, char *arg, double *value ) Get the double after an option on the command line
Get the double 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 a double floating-point value and returned.
The string comparison is case sensitive.