3c0 #include #include main(int argc, char **argv) { int i; int ts_gender,ts_tone,ts_volume,ts_pitch,ts_speed; if(argc > 1) { if(argc == 6) { if (sbts_init()) { ts_gender = atoi(argv[1]); ts_tone = atoi(argv[2]); ts_volume = atoi(argv[3]); ts_pitch = atoi(argv[4]); ts_speed = atoi(argv[5]); sbts_settings(ts_gender,ts_tone,ts_volume,ts_pitch,ts_speed); } else printf("Error: SBTALKER not installed.\n") ; } else printf("Error: too few parameters\n"); } else { printf("SETSPEAK sets parameters for SBTALKER driver\n"); printf("Usage: setspeak \n"); } } . 0