1 /*
2   Prop
3   Manipulate properties of objects
4   JBS 15 June 1994
5 */
6 
7 #ifndef _PROP_
8 
9 #define _PROP_
10 
11 #include "types.h"
12 
13 void prop_getprop(word, word);
14 void prop_put_prop(word, word, word);
15 void prop_get_next_prop(word, word);
16 void prop_get_prop_addr(word, word);
17 void prop_get_p_len(word);
18 
19 void load_word_array(word, word);
20 void load_byte_array(word, word);
21 void save_word_array(word, word, word);
22 void save_byte_array(word, word, word);
23 
24 #endif
25