home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / SOURCE / CSSRC / FNNOWRIT.C < prev    next >
C/C++ Source or Header  |  1990-03-28  |  634b  |  34 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.2
  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.      3/28/90 jmd    ansi-fied
  17. */
  18.  
  19. #include <stdio.h>
  20. #include <string.h>
  21. #include <ctype.h>
  22.  
  23. #include "cscape.h"
  24. #include "fnfunc.h"            /* for field functions */
  25.  
  26. OGLOBAL field_funcs_struct nowrite_funcs = {
  27.     stdNoCur_fenter,
  28.     std_fexit,
  29.     menu_fkey,
  30.     string_senter,
  31.     FNULL,
  32.     VAR_STRING
  33. };
  34.