Re: How to suppress the output of an external module ?

2006-12-30 Thread Scott David Daniels
MRAB wrote: Scott David Daniels wrote: [EMAIL PROTECTED] wrote: In Windows the null device is, strictly speaking, nul or nul:, not nul.txt, but the latter appears to work too. Although I find the windows design and reasoning to be a mistake, I believe the use of file names NUL, PRN, and CON

Re: How to suppress the output of an external module ?

2006-12-27 Thread MRAB
Scott David Daniels wrote: [EMAIL PROTECTED] wrote: Hi, I'm writing a program which uses an external module written in C and calls a function provided by the module to do my job. The function produces a lot of output to the stdout. Is there a way to suppress the output produced

Re: How to suppress the output of an external module ?

2006-12-26 Thread Scott David Daniels
[EMAIL PROTECTED] wrote: Hi, I'm writing a program which uses an external module written in C and calls a function provided by the module to do my job. The function produces a lot of output to the stdout. Is there a way to suppress the output produced by the function and hence make