1: /* ssequal.c - initially equal? */
   2: 
   3: 
   4: ssequal (substr, str)
   5: register char  *substr,
   6:                *str;
   7: {
   8:     if (!substr)
   9:     substr = "";
  10:     if (!str)
  11:     str = "";
  12: 
  13:     while (*substr)
  14:     if (*substr++ != *str++)
  15:         return 0;
  16:     return 1;
  17: }

Defined functions

Last modified: 1985-04-17
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 719
Valid CSS Valid XHTML 1.0 Strict