Lines Matching defs:newopt
1046 InputOption *newopt = NULL, **tmpo = NULL;
1049 newopt = calloc(1, sizeof (InputOption));
1050 if (!newopt)
1055 *tmpo = newopt;
1060 newopt->key = (char *)malloc(tam_key);
1061 strncpy(newopt->key, string, tam_key);
1062 newopt->key[tam_key] = '\0';
1063 newopt->value = strdup(strchr(string, '=') + 1);
1067 newopt->key = strdup(string);
1068 newopt->value = NULL;
1070 newopt->next = NULL;