Lines Matching refs:options
126 add_option(InputOption **options, const char *key, const char *value)131 for (; *options; options = &(*options)->next)133 *options = calloc(sizeof(**options), 1);134 if (!*options) /* Yeesh. */136 (*options)->key = strdup(key);137 (*options)->value = strdup(value);138 (*options)->next = NULL;