Blame dmioutput.h

Packit Bot 613a53
/*
Packit Bot 613a53
 * Generic output functions
Packit Bot 613a53
 * This file is part of the dmidecode project.
Packit Bot 613a53
 *
Packit Bot 613a53
 *   Copyright (C) 2020 Jean Delvare <jdelvare@suse.de>
Packit Bot 613a53
 *
Packit Bot 613a53
 *   This program is free software; you can redistribute it and/or modify
Packit Bot 613a53
 *   it under the terms of the GNU General Public License as published by
Packit Bot 613a53
 *   the Free Software Foundation; either version 2 of the License, or
Packit Bot 613a53
 *   (at your option) any later version.
Packit Bot 613a53
 *
Packit Bot 613a53
 *   This program is distributed in the hope that it will be useful,
Packit Bot 613a53
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Bot 613a53
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Bot 613a53
 *   GNU General Public License for more details.
Packit Bot 613a53
 *
Packit Bot 613a53
 *   You should have received a copy of the GNU General Public License
Packit Bot 613a53
 *   along with this program; if not, write to the Free Software
Packit Bot 613a53
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
Packit Bot 613a53
 */
Packit Bot 613a53
Packit Bot 63ccab
#include "dmidecode.h"
Packit Bot 63ccab
Packit Bot 613a53
void pr_comment(const char *format, ...);
Packit Bot ca9862
void pr_info(const char *format, ...);
Packit Bot 63ccab
void pr_handle(const struct dmi_header *h);
Packit Bot beb2d7
void pr_handle_name(const char *format, ...);
Packit Bot 986715
void pr_attr(const char *name, const char *format, ...);
Packit Bot 19ab97
void pr_subattr(const char *name, const char *format, ...);
Packit Bot 962e8c
void pr_list_start(const char *name, const char *format, ...);
Packit Bot 962e8c
void pr_list_item(const char *format, ...);
Packit Bot 962e8c
void pr_list_end(void);