#include #include "aplinks.h" #ifdef UNIX #include "stricmp.h" #endif int chk_takeimg(int argc, char *argv[], int *timg) { int i; *timg = DEFAULT_TAKEIMG; for(i = 1; i < argc; i++){ if(stricmp(argv[i], "-I") == 0){ *timg = ON; } else if(stricmp(argv[i], "-I-") == 0){ *timg = OFF; } } return 0; }