Wild Life  2.30
 All Data Structures Files Functions Variables Typedefs Macros
Functions
raw.c File Reference

raw i/o used only by the life-shell of Kathleen. More...

Go to the source code of this file.

Functions

void raw_setup_builtins ()
 raw_setup_builtins More...
 

Detailed Description

raw i/o used only by the life-shell of Kathleen.

Definition in file raw.c.

Function Documentation

void raw_setup_builtins ( )

raw_setup_builtins

set up the built-ins for the mode raw

Definition at line 303 of file raw.c.

References bi_module, c_begin_raw(), c_end_raw(), c_get_raw(), c_in_raw(), c_put_raw(), c_reset_window_flag(), c_window_flag(), function_it, and new_built_in().

304 {
305 #ifndef NORAW
306  new_built_in(bi_module,"begin_raw", predicate, c_begin_raw);
307  new_built_in(bi_module,"get_raw", predicate, c_get_raw);
308  new_built_in(bi_module,"put_raw", predicate, c_put_raw);
309  new_built_in(bi_module,"end_raw", predicate, c_end_raw);
312  new_built_in(bi_module,"reset_window_flag", predicate, c_reset_window_flag);
313 #endif
314 }
void new_built_in(ptr_module m, char *s, def_type t, long(*r)())
new_built_in
Definition: built_ins.c:5375
#define function_it
was enum (def_type) in extern.h now there is typedef ptr_definition
Definition: def_const.h:1408
long c_end_raw()
long c_in_raw()
long c_reset_window_flag()
long c_put_raw()
ptr_module bi_module
Module for public built-ins.
Definition: def_glob.h:687
long c_get_raw()
long c_window_flag()
long c_begin_raw()