outputter
struct outputter *outputter)
if (outputter->output_section != NULL) {
outputter->output_section(outfile, filename, sh);
if (outputter->output_entry != NULL) {
outputter->output_entry(outfile, filename, entry,
struct outputter *outputter)
if (outputter->output_image != NULL)
outputter->output_image(outfile, filename, bvd);
if (outputter->output_entry != NULL)
outputter->output_entry(outfile, filename,
outputter);
struct outputter *outputter;
outputter = output_text;
outputter = output_shell;
outputter = output_text;
dump_eltorito(iso, argv[i], outfile, outputter);
extern struct outputter *output_text;
extern struct outputter *output_shell;
static struct outputter _output_shell = {
struct outputter *output_shell = &_output_shell;
static struct outputter _output_text = {
struct outputter *output_text = &_output_text;