| 88 | | extern void do_userfn(char *buff, char **bp, |
|---|
| 89 | | dbref obj, ATTR *attrib, |
|---|
| 90 | | int nargs, char **args, |
|---|
| 91 | | dbref executor, dbref caller, dbref enactor, |
|---|
| 92 | | PE_Info *pe_info, int extra_flags); |
|---|
| | 88 | void do_userfn(char *buff, char **bp, |
|---|
| | 89 | dbref obj, ATTR *attrib, |
|---|
| | 90 | int nargs, char **args, |
|---|
| | 91 | dbref executor, dbref caller, dbref enactor, |
|---|
| | 92 | PE_Info *pe_info, int extra_flags); |
|---|
| 94 | | extern FUN *func_hash_lookup(const char *name); |
|---|
| 95 | | extern FUN *builtin_func_hash_lookup(const char *name); |
|---|
| 96 | | extern int check_func(dbref player, FUN *fp); |
|---|
| 97 | | extern int restrict_function(const char *name, const char *restrict); |
|---|
| 98 | | extern int alias_function(const char *function, const char *alias); |
|---|
| 99 | | extern void do_function_restrict(dbref player, const char *name, |
|---|
| 100 | | const char *restrict, int builtin); |
|---|
| 101 | | extern void do_function_restore(dbref player, const char *name); |
|---|
| 102 | | extern void do_list_functions(dbref player, int lc); |
|---|
| 103 | | extern char *list_functions(void); |
|---|
| 104 | | extern void do_function(dbref player, char *name, char **argv, int preserve); |
|---|
| 105 | | extern void do_function_toggle(dbref player, char *name, int toggle); |
|---|
| 106 | | extern void do_function_report(dbref player, char *name); |
|---|
| 107 | | extern void do_function_delete(dbref player, char *name); |
|---|
| 108 | | extern void function_init_postconfig(void); |
|---|
| | 94 | FUN *func_hash_lookup(const char *name); |
|---|
| | 95 | FUN *builtin_func_hash_lookup(const char *name); |
|---|
| | 96 | int check_func(dbref player, FUN *fp); |
|---|
| | 97 | int restrict_function(const char *name, const char *restrict); |
|---|
| | 98 | int alias_function(const char *function, const char *alias); |
|---|
| | 99 | void do_function_restrict(dbref player, const char *name, |
|---|
| | 100 | const char *restrict, int builtin); |
|---|
| | 101 | void do_function_restore(dbref player, const char *name); |
|---|
| | 102 | void do_list_functions(dbref player, int lc); |
|---|
| | 103 | char *list_functions(const char *); |
|---|
| | 104 | void do_function(dbref player, char *name, char **argv, int preserve); |
|---|
| | 105 | void do_function_toggle(dbref player, char *name, int toggle); |
|---|
| | 106 | void do_function_report(dbref player, char *name); |
|---|
| | 107 | void do_function_delete(dbref player, char *name); |
|---|
| | 108 | void function_init_postconfig(void); |
|---|