summaryrefslogtreecommitdiff
path: root/dmioutput.c
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2020-04-01 09:51:46 +0200
committerJean Delvare <jdelvare@suse.de>2020-04-01 09:51:46 +0200
commit2241f1dd232fe8e1d57fdb2482ad417ebe23279e (patch)
tree38d615cdb312adc63ab00b892dc9d31665b19b05 /dmioutput.c
parent26a66d708c6caef09912245c93371ec96c1e0cbd (diff)
downloaddmidecode-git-2241f1dd232fe8e1d57fdb2482ad417ebe23279e.tar.gz
dmidecode: Add helper function pr_comment
Print all comments through a helper function pr_comment. Signed-off-by: Jean Delvare <jdelvare@suse.de>
Diffstat (limited to 'dmioutput.c')
-rw-r--r--dmioutput.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/dmioutput.c b/dmioutput.c
new file mode 100644
index 0000000..e762a03
--- /dev/null
+++ b/dmioutput.c
@@ -0,0 +1,35 @@
+/*
+ * Generic output functions
+ * This file is part of the dmidecode project.
+ *
+ * Copyright (C) 2020 Jean Delvare <jdelvare@suse.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#include <stdarg.h>
+#include <stdio.h>
+#include "dmioutput.h"
+
+void pr_comment(const char *format, ...)
+{
+ va_list args;
+
+ printf("# ");
+ va_start(args, format);
+ vprintf(format, args);
+ va_end(args);
+ printf("\n");
+}