1: /* Copyright (c) 1979 Regents of the University of California */
   2: 
   3: static char sccsid[] = "@(#)WRITEC.c 1.4 6/10/81";
   4: 
   5: #include "h00vars.h"
   6: 
   7: WRITEC(curfile, d1, d2)
   8: 
   9:     register struct iorec   *curfile;
  10:     char            d1;
  11:     FILE            *d2;
  12: {
  13:     if (curfile->funit & FREAD) {
  14:         ERROR("%s: Attempt to write, but open for reading\n",
  15:             curfile->pfname);
  16:         return;
  17:     }
  18:     fputc(d1, d2);
  19:     if (ferror(curfile->fbuf)) {
  20:         PERROR("Could not write to ", curfile->pfname);
  21:         return;
  22:     }
  23: }

Defined functions

WRITEC defined in line 7; used 1 times

Defined variables

sccsid defined in line 3; never used
Last modified: 1983-02-01
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 826
Valid CSS Valid XHTML 1.0 Strict