summaryrefslogtreecommitdiff
path: root/frontends/kolibrios/kolibri_debug.h
diff options
context:
space:
mode:
authorAshish Gupta <ashmew2@gmail.com>2017-04-05 21:39:01 +0200
committerAshish Gupta <ashmew2@gmail.com>2017-10-25 22:04:54 +0200
commita618be2a69a347128a4e29c879abf4a913421f52 (patch)
treebc2c47924baf985e202b61bcf4c9acec7fe44ea1 /frontends/kolibrios/kolibri_debug.h
parent341c22d2a593040c558de5f9b82d3f740207d82f (diff)
downloadnetsurf-a618be2a69a347128a4e29c879abf4a913421f52.tar.gz
netsurf-a618be2a69a347128a4e29c879abf4a913421f52.tar.bz2
Add kolibrios/ dir : Step 1 towards porting this to Kolibri OS
Diffstat (limited to 'frontends/kolibrios/kolibri_debug.h')
-rw-r--r--frontends/kolibrios/kolibri_debug.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/frontends/kolibrios/kolibri_debug.h b/frontends/kolibrios/kolibri_debug.h
new file mode 100644
index 000000000..a6dc61ed4
--- /dev/null
+++ b/frontends/kolibrios/kolibri_debug.h
@@ -0,0 +1,11 @@
+#ifndef KOLIBRI_DEBUG_H
+#define KOLIBRI_DEBUG_H
+
+/* Write a printf() like function (variable argument list) for
+ writing to debug board */
+
+void debug_board_write_byte(const char ch);
+void debug_board_write_str(const char* str);
+void debug_board_printf(const char *format, ...);
+
+#endif /* KOLIBRI_DEBUG_H */