fix indent test and indentation

This commit is contained in:
josch
2014-09-24 11:28:35 +02:00
parent 0561a922c5
commit 6ca27f0a6a
18 changed files with 88 additions and 98 deletions

View File

@@ -20,17 +20,18 @@
#define _MFSHELL_OPTIONS_H_
struct mfshell_user_options {
char *username;
char *password;
char *command;
char *server;
char *config;
int app_id;
char *api_key;
char *username;
char *password;
char *command;
char *server;
char *config;
int app_id;
char *api_key;
};
void print_help(const char *cmd);
void print_help(const char *cmd);
void parse_argv(int argc, char *const argv[], struct mfshell_user_options *opts);
void parse_argv(int argc, char *const argv[],
struct mfshell_user_options *opts);
#endif