home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c185 / 1.ddi / FUNCS.EXE / CSCAPE / SOURCE / FNNOWRIT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-09-07  |  609 b   |  33 lines

  1. /*
  2.     fnnowrit.c  8/03/89
  3.  
  4.     % nowrite_funcs
  5.  
  6.     Like menu_funcs, 'cept that it reads a string in from its field var
  7.     i.e., string_funcs that you can't edit.
  8.  
  9.     C-scape 3.1
  10.     Copyright (c) 1986, 1987, 1988 by Oakland Group, Inc.
  11.     ALL RIGHTS RESERVED.
  12.  
  13.     Revision History:
  14.     -----------------
  15.      8/07/89 gam    Changed NULL to FNULL
  16. */
  17.  
  18. #include <stdio.h>
  19. #include <string.h>
  20. #include <ctype.h>
  21.  
  22. #include "cscape.h"
  23. #include "fnfunc.h"            /* for field functions */
  24.  
  25. OGLOBAL field_funcs_struct nowrite_funcs = {
  26.     stdNoCur_fenter,
  27.     std_fexit,
  28.     menu_fkey,
  29.     string_senter,
  30.     FNULL,
  31.     VAR_STRING
  32. };
  33.