home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / SOURCE / CSSRC / SDISFNAM.C < prev    next >
C/C++ Source or Header  |  1990-08-13  |  516b  |  32 lines

  1. /*
  2.     sdisfnam.c        8/13/90
  3.  
  4.     % sed_IsFieldName
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1990, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12. */
  13.  
  14. #include "sed.h"
  15.  
  16. boolean sed_IsFieldName(sed_type sed, int fieldno, char *name)
  17. /*
  18.     Tests if a field has the given name.
  19.     returns TRUE if it does, FALSE otherwise
  20. */
  21. {
  22.     char *fname;
  23.  
  24.     if ((fname = sed_GetFieldName(sed, fieldno)) != NULL) {
  25.         if (strcmp(name, fname) == 0) {
  26.             return(TRUE);
  27.         }
  28.     }
  29.  
  30.     return(FALSE);
  31. }
  32.