summaryrefslogtreecommitdiffstats
path: root/eurephiadm/field_print.h
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2008-12-20 14:33:22 +0100
committerDavid Sommerseth <dazo@users.sourceforge.net>2008-12-20 14:33:22 +0100
commitd747ff97dcf12ea39f8836b85c608cce9a3720e5 (patch)
tree7df5f4766aac7af3d07e79af538c798fa6e7a851 /eurephiadm/field_print.h
parent31148e445a38e6daac0331d3839037dc297cd359 (diff)
downloadeurephia-d747ff97dcf12ea39f8836b85c608cce9a3720e5.tar.gz
eurephia-d747ff97dcf12ea39f8836b85c608cce9a3720e5.tar.xz
eurephia-d747ff97dcf12ea39f8836b85c608cce9a3720e5.zip
Moved field_print_* functions into separate files
Diffstat (limited to 'eurephiadm/field_print.h')
-rw-r--r--eurephiadm/field_print.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/eurephiadm/field_print.h b/eurephiadm/field_print.h
new file mode 100644
index 0000000..a1442c6
--- /dev/null
+++ b/eurephiadm/field_print.h
@@ -0,0 +1,29 @@
+/* field_print.h -- simple functions for printing label/value pairs
+ *
+ * GPLv2 - Copyright (C) 2008 David Sommerseth <dazo@users.sourceforge.net>
+ *
+ * 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; version 2
+ * of the License.
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#include <stdio.h>
+
+#ifndef FIELD_PRINT_H
+#define FIELD_PRINT_H
+
+inline void field_print_int(char *label, int val);
+inline void field_print_str(char *label, char *val);
+
+#endif