1 /* $Id: esc-ok.c,v 1.4 2002/07/13 05:02:11 oohara Exp $ */
2 
3 #include <stdio.h>
4 
5 #include "esc-ok.h"
6 
7 static int esc_ok = 1;
8 
9 void
set_esc_ok(int n)10 set_esc_ok(int n)
11 {
12   esc_ok = n;
13 }
14 
15 int
get_esc_ok(void)16 get_esc_ok(void)
17 {
18   return esc_ok;
19 }
20