/*cdTalk tells the code whether to print results or be silent */ #include "cddefines.h" #include "called.h" #include "cddrive.h" void cdTalk(int lgTOn) { # ifdef DEBUG_FUN fputs( "<+>cdTalk()\n", debug_fp ); # endif called.lgTalk = lgTOn; if( lgTOn ) { /* means talk has not been forced off */ called.lgTalkForce = FALSE; } else { /* means talk is forced off */ called.lgTalkForce = TRUE; } # ifdef DEBUG_FUN fputs( " <->cdTalk()\n", debug_fp ); # endif return; }