Lines Matching defs:out
35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
69 " -out arg - output file - default stdout\n",
76 FILE *in=NULL,*out=NULL;
93 else if (strcmp(*argv,"-out") == 0)
134 out=stdout;
137 out=fopen(outfile,"w");
138 if (out == NULL)
150 setmode(fileno(out),O_BINARY);
181 i=fwrite(buf,(unsigned int)i,1,out);
188 fclose(out);