home *** CD-ROM | disk | FTP | other *** search
- /*
- fnnowrit.c 8/03/89
-
- % nowrite_funcs
-
- Like menu_funcs, 'cept that it reads a string in from its field var
- i.e., string_funcs that you can't edit.
-
- C-scape 3.2
- Copyright (c) 1986, 1987, 1988 by Oakland Group, Inc.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- 8/07/89 gam Changed NULL to FNULL
- 3/28/90 jmd ansi-fied
- */
-
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
-
- #include "cscape.h"
- #include "fnfunc.h" /* for field functions */
-
- OGLOBAL field_funcs_struct nowrite_funcs = {
- stdNoCur_fenter,
- std_fexit,
- menu_fkey,
- string_senter,
- FNULL,
- VAR_STRING
- };
-