home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / SOURCE / CSSRC / SDNAME.C < prev    next >
C/C++ Source or Header  |  1990-03-28  |  504b  |  33 lines

  1. /*
  2.     sdgtonam.c
  3.  
  4.     % sed_GotoNameField
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1988, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.      3/24/89 jmd    added sed_ macros
  13.      3/28/90 jmd    ansi-fied
  14. */
  15.  
  16. #include "sed.h"
  17.  
  18. int sed_GotoNameField(sed_type sed, char *name)
  19. /*
  20.     Go to a field given its name.
  21. */
  22. {
  23.     int fldno;
  24.  
  25.     if ((fldno = menu_GetNameNo(sed_GetMenu(sed), name)) <= -1) {
  26.         return(SED_STUCK);
  27.     }
  28.     else {
  29.         return(sed_GotoField(sed, fldno));
  30.     }
  31. }
  32.  
  33.