1: /* Copyright (c) 1979 Regents of the University of California */
   2: 
   3: static char sccsid[] = "@(#)LLIMIT.c 1.3 6/10/81";
   4: 
   5: #include "h00vars.h"
   6: 
   7: LLIMIT(curfile, limit)
   8: 
   9:     register struct iorec   *curfile;
  10:     long            limit;
  11: {
  12:     if (limit <= 0)
  13:         limit = 0x7fffffff;
  14:     curfile->llimit = limit;
  15:     if (curfile->lcount >= curfile->llimit) {
  16:         ERROR("%s: Line limit exceeded\n", curfile->pfname);
  17:         return;
  18:     }
  19: }

Defined functions

LLIMIT 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: 725
Valid CSS Valid XHTML 1.0 Strict