forked from agorise/c-ipfs
35 lines
1 KiB
C
35 lines
1 KiB
C
#include <stdlib.h>
|
|
|
|
#include "ipfs/commands/command.h"
|
|
|
|
int commands_command_init(struct Command* cmd) {
|
|
// allocate memory for Argument array
|
|
cmd->arguments = malloc(cmd->argument_count * sizeof(struct Argument*));
|
|
if (cmd->arguments == NULL)
|
|
return 0;
|
|
// allocate memory for each argument
|
|
for(int i = 0; i < cmd->argument_count; i++)
|
|
cmd->arguments[i] = malloc(sizeof(struct Argument));
|
|
|
|
// allocate memory for CommandOption array
|
|
cmd->options = malloc(cmd->option_count * sizeof(struct CommandOption*));
|
|
if (cmd->options == NULL)
|
|
return 0;
|
|
// allocate memory for each CommandOption
|
|
for(int i = 0; i < cmd->option_count; i++)
|
|
cmd->options[i] = malloc(sizeof(struct CommandOption));
|
|
return 1;
|
|
}
|
|
|
|
int commands_command_free(struct Command* cmd) {
|
|
// arguments
|
|
for(int i = 0; i < cmd->argument_count; i++)
|
|
commands_argument_free(cmd->arguments[i]);
|
|
free(cmd->arguments);
|
|
|
|
//command options
|
|
for(int i = 0; i < cmd->option_count; i++)
|
|
commands_command_option_free(cmd->options[i]);
|
|
free(cmd->options);
|
|
return 0;
|
|
}
|