// // option.c // c-ipfs // // Created by John Jones on 10/26/16. // Copyright © 2016 JMJAtlanta. All rights reserved. // #include #include #include "ipfs/commands/command_option.h" int commands_command_option_init(struct CommandOption* option, char* description) { option->description = description; // allocate memory for names option->names = malloc(option->name_count * sizeof(char*)); if (option->names == NULL) return 0; return 1; } int commands_command_option_free(struct CommandOption* option) { free(option->names); return 0; }