remove the _t postfix from type names because POSIX reserves types ending in _t

This commit is contained in:
josch
2014-09-19 23:13:29 +02:00
parent e0ee1e5f8f
commit 4b2563d800
34 changed files with 294 additions and 294 deletions

View File

@@ -30,10 +30,10 @@
#include "../utils/strings.h"
static void
mfshell_run(mfshell_t *mfshell);
mfshell_run(mfshell *mfshell);
static void
mfshell_parse_commands(mfshell_t *mfshell, char *command);
mfshell_parse_commands(mfshell *mfshell, char *command);
void print_help(char *cmd)
{
@@ -120,7 +120,7 @@ void parse_argv(int argc, char **argv, char **username,
int main(int argc,char **argv)
{
mfshell_t *mfshell;
mfshell *mfshell;
char *server = "www.mediafire.com";
char *username = NULL;
char *password = NULL;
@@ -145,7 +145,7 @@ int main(int argc,char **argv)
}
static void
mfshell_parse_commands(mfshell_t *mfshell, char *command)
mfshell_parse_commands(mfshell *mfshell, char *command)
{
char *next;
int ret;
@@ -173,7 +173,7 @@ mfshell_parse_commands(mfshell_t *mfshell, char *command)
}
static void
mfshell_run(mfshell_t *mfshell)
mfshell_run(mfshell *mfshell)
{
char *cmd = NULL;
size_t len;