The only good dead code is non-existing dead code.
const char *identifier,
argument_list_t *arguments);
-void
-_print_string_list (string_list_t *list);
-
string_list_t *
_string_list_create (void *ctx);
return length;
}
-void
-_print_string_list (string_list_t *list)
-{
- string_node_t *node;
-
- if (list == NULL)
- return;
-
- for (node = list->head; node; node = node->next) {
- printf ("%s", node->str);
- if (node->next)
- printf (" ");
- }
-}
-
argument_list_t *
_argument_list_create (void *ctx)
{