1: /* Copyright (c) 1979 Regents of the University of California */
   2: 
   3: static char sccsid[] = "@(#)RELNE.c 1.2 3/7/81";
   4: 
   5: #include "h00vars.h"
   6: 
   7: bool
   8: RELNE(siz, str1, str2)
   9: 
  10:     long        siz;
  11:     register char   *str1;
  12:     register char   *str2;
  13: {
  14:     register int size = siz;
  15: 
  16:     while (*str1++ == *str2++ && --size)
  17:         /* void */;
  18:     if (size == 0)
  19:         return FALSE;
  20:     return TRUE;
  21: }

Defined functions

RELNE defined in line 7; used 3 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: 713
Valid CSS Valid XHTML 1.0 Strict