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
186 FILE *out = NULL;
215 out = fdopen(fd, "wb");
239 out = vms_fopen(file,"rb+",VMS_OPEN_ATTRS);
240 if (out == NULL)
241 out = vms_fopen(file,"wb",VMS_OPEN_ATTRS);
243 if (out == NULL)
244 out = fopen(file,"wb");
246 if (out == NULL) goto err;
258 i=fwrite(buf,1,i,out);
268 fclose(out);