16 lines
361 B
C
16 lines
361 B
C
#ifndef l_say_h
|
|
#define l_say_h
|
|
|
|
static void create();
|
|
mixed can_say();
|
|
mixed can_say_to_liv(object ob);
|
|
mixed can_say_to_liv_str(object ob, string str);
|
|
mixed can_say_str(string str);
|
|
mixed do_say();
|
|
mixed do_say_to_liv(object ob);
|
|
mixed do_say_to_liv_str(object ob, string str);
|
|
mixed do_say_str(string str);
|
|
string GetHelp(string str);
|
|
|
|
#endif /* l_say_h */
|