mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-22 21:56:21 +00:00
Revert "Apply coding style"
This reverts commit 9b55f2dec0.
Sorting the includes creates some problems.
This commit is contained in:
@@ -36,28 +36,28 @@
|
||||
#ifndef COMMAND_CMD_AC_H
|
||||
#define COMMAND_CMD_AC_H
|
||||
|
||||
#include "command/cmd_funcs.h"
|
||||
#include "config/preferences.h"
|
||||
#include "command/cmd_funcs.h"
|
||||
|
||||
void cmd_ac_init(void);
|
||||
void cmd_ac_uninit(void);
|
||||
char* cmd_ac_complete(ProfWin* window, const char* const input, gboolean previous);
|
||||
void cmd_ac_reset(ProfWin* window);
|
||||
gboolean cmd_ac_exists(char* cmd);
|
||||
char* cmd_ac_complete(ProfWin *window, const char *const input, gboolean previous);
|
||||
void cmd_ac_reset(ProfWin *window);
|
||||
gboolean cmd_ac_exists(char *cmd);
|
||||
|
||||
void cmd_ac_add(const char* const value);
|
||||
void cmd_ac_add_help(const char* const value);
|
||||
void cmd_ac_add_cmd(Command* command);
|
||||
void cmd_ac_add_alias(ProfAlias* alias);
|
||||
void cmd_ac_add_alias_value(char* value);
|
||||
void cmd_ac_add(const char *const value);
|
||||
void cmd_ac_add_help(const char *const value);
|
||||
void cmd_ac_add_cmd(Command *command);
|
||||
void cmd_ac_add_alias(ProfAlias *alias);
|
||||
void cmd_ac_add_alias_value(char *value);
|
||||
|
||||
void cmd_ac_remove(const char* const value);
|
||||
void cmd_ac_remove_help(const char* const value);
|
||||
void cmd_ac_remove_alias_value(char* value);
|
||||
void cmd_ac_remove(const char *const value);
|
||||
void cmd_ac_remove_help(const char *const value);
|
||||
void cmd_ac_remove_alias_value(char *value);
|
||||
|
||||
void cmd_ac_add_form_fields(DataForm* form);
|
||||
void cmd_ac_remove_form_fields(DataForm* form);
|
||||
void cmd_ac_add_form_fields(DataForm *form);
|
||||
void cmd_ac_remove_form_fields(DataForm *form);
|
||||
|
||||
char* cmd_ac_complete_filepath(const char* const input, char* const startstr, gboolean previous);
|
||||
char* cmd_ac_complete_filepath(const char *const input, char *const startstr, gboolean previous);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user