mirror of
https://github.com/profanity-im/profanity.git
synced 2025-02-02 15:08:15 -05:00
Applied coding style to command.h
This commit is contained in:
parent
cded90bcd0
commit
fa53e23805
@ -45,7 +45,7 @@ GHashTable *commands;
|
||||
void cmd_init(void);
|
||||
void cmd_uninit(void);
|
||||
|
||||
char* cmd_autocomplete(ProfWin *window, const char * const input);
|
||||
char* cmd_autocomplete(ProfWin *window, const char *const input);
|
||||
void cmd_reset_autocomplete(ProfWin *window);
|
||||
void cmd_autocomplete_add(char *value);
|
||||
void cmd_autocomplete_remove(char *value);
|
||||
@ -54,21 +54,21 @@ void cmd_autocomplete_remove_form_fields(DataForm *form);
|
||||
void cmd_alias_add(char *value);
|
||||
void cmd_alias_remove(char *value);
|
||||
|
||||
gboolean cmd_valid_tag(const char * const str);
|
||||
gboolean cmd_has_tag(Command *pcmd, const char * const tag);
|
||||
gboolean cmd_valid_tag(const char *const str);
|
||||
gboolean cmd_has_tag(Command *pcmd, const char *const tag);
|
||||
|
||||
gboolean cmd_process_input(ProfWin *window, char *inp);
|
||||
void cmd_execute_connect(ProfWin *window, const char * const account);
|
||||
void cmd_execute_connect(ProfWin *window, const char *const account);
|
||||
|
||||
gboolean cmd_exists(char *cmd);
|
||||
|
||||
GSList * cmd_get_basic_help(void);
|
||||
GSList * cmd_get_settings_help(void);
|
||||
GSList * cmd_get_presence_help(void);
|
||||
GSList* cmd_get_basic_help(void);
|
||||
GSList* cmd_get_settings_help(void);
|
||||
GSList* cmd_get_presence_help(void);
|
||||
|
||||
void cmd_history_append(char *inp);
|
||||
char *cmd_history_previous(char *inp);
|
||||
char *cmd_history_next(char *inp);
|
||||
char* cmd_history_previous(char *inp);
|
||||
char* cmd_history_next(char *inp);
|
||||
|
||||
void command_docgen(void);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user