static void show_sep (variable * v) { st_printf ("%s \"%s\"\n", var_source (v), options.separator); }
static void show_integer (variable * v) { st_printf ("%s %d\n", var_source (v), *v->var); }
static void show_boolean (variable * v) { st_printf ("%s %s\n", var_source (v), *v->var ? "Yes" : "No"); }