forked from joakimmelin/sklaffkom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommand_list.c
More file actions
89 lines (88 loc) · 3.39 KB
/
Copy pathcommand_list.c
File metadata and controls
89 lines (88 loc) · 3.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include "sklaff.h"
const struct COMMAND_ENTRY command_list[] = {
{ "cmd_add_rights", cmd_add_rights, },
{ "cmd_alias", cmd_alias, },
{ "cmd_answermsg", cmd_answermsg, },
{ "cmd_back_text", cmd_back_text, },
{ "cmd_change_cname", cmd_change_cname, },
{ "cmd_change_comc", cmd_change_comc, },
{ "cmd_change_conf", cmd_change_conf, },
{ "cmd_change_passwd", cmd_change_passwd, },
{ "cmd_cls", cmd_cls, },
{ "cmd_comment", cmd_comment, },
{ "cmd_create_conf", cmd_create_conf, },
{ "cmd_delete_conf", cmd_delete_conf, },
{ "cmd_delete_text", cmd_delete_text, },
{ "cmd_deprio", cmd_deprio, },
{ "cmd_describe", cmd_describe, },
{ "cmd_display_commented", cmd_display_commented, },
{ "cmd_display_last", cmd_display_last, },
{ "cmd_display_rot13", cmd_display_rot13, },
{ "cmd_display_time", cmd_display_time, },
{ "cmd_download", cmd_download, },
{ "cmd_end_session", cmd_end_session, },
{ "cmd_from", cmd_from, },
{ "cmd_global_grep", cmd_global_grep, },
{ "cmd_goto_text", cmd_goto_text, },
{ "cmd_grep", cmd_grep, },
{ "cmd_help", cmd_help, },
{ "cmd_I", cmd_I, },
{ "cmd_info", cmd_info, },
{ "cmd_jump_over", cmd_jump_over, },
{ "cmd_jumpsub", cmd_jumpsub, },
{ "cmd_jump_tree", cmd_jump_tree, },
{ "cmd_jumpuser", cmd_jumpuser, },
{ "cmd_licens", cmd_licens, },
{ "cmd_list_confs", cmd_list_confs, },
{ "cmd_list_files", cmd_list_files, },
{ "cmd_list_flags", cmd_list_flags, },
{ "cmd_list_last", cmd_list_last, },
{ "cmd_list_member", cmd_list_member, },
{ "cmd_list_news", cmd_list_news, },
{ "cmd_list_rights", cmd_list_rights, },
{ "cmd_list_says", cmd_list_says, },
{ "cmd_list_subj", cmd_list_subj, },
{ "cmd_list_users", cmd_list_users, },
{ "cmd_list_yells", cmd_list_yells, },
{ "cmd_long_help", cmd_long_help, },
{ "cmd_mail", cmd_mail, },
{ "cmd_mod_login", cmd_mod_login, },
{ "cmd_mod_note", cmd_mod_note, },
{ "cmd_mod_pinfo", cmd_mod_pinfo, },
{ "cmd_mod_sig", cmd_mod_sig, },
{ "cmd_mod_timeout", cmd_mod_timeout, },
{ "cmd_my", cmd_my, },
{ "cmd_next_comment", cmd_next_comment, },
{ "cmd_next_conf", cmd_next_conf, },
{ "cmd_next_text", cmd_next_text, },
{ "cmd_off_flag", cmd_off_flag, },
{ "cmd_on_flag", cmd_on_flag, },
{ "cmd_only", cmd_only, },
{ "cmd_personal", cmd_personal, },
{ "cmd_post_survey", cmd_post_survey, },
{ "cmd_post_text", cmd_post_text, },
{ "cmd_prio", cmd_prio, },
{ "cmd_readall", cmd_readall, },
{ "cmd_read_last_text", cmd_read_last_text, },
{ "cmd_readsome", cmd_readsome, },
{ "cmd_read_text", cmd_read_text, },
{ "cmd_reclaim_unread", cmd_reclaim_unread, },
{ "cmd_restart", cmd_restart, },
{ "cmd_say", cmd_say, },
{ "cmd_sendbatch", cmd_sendbatch, },
{ "cmd_show_status", cmd_show_status, },
{ "cmd_sub_rights", cmd_sub_rights, },
{ "cmd_subscribe", cmd_subscribe, },
{ "cmd_survey_result", cmd_survey_result, },
{ "cmd_unlink", cmd_unlink, },
{ "cmd_unreadsub", cmd_unreadsub, },
{ "cmd_unread_text", cmd_unread_text, },
{ "cmd_unread_tree", cmd_unread_tree, },
{ "cmd_unsubscribe", cmd_unsubscribe, },
{ "cmd_upload", cmd_upload, },
{ "cmd_where", cmd_where, },
{ "cmd_who", cmd_who, },
{ "cmd_whole_text", cmd_whole_text, },
{ "cmd_yell", cmd_yell, },
{ NULL, NULL },
};