aboutsummaryrefslogtreecommitdiffstats
path: root/hex.h
diff options
context:
space:
mode:
Diffstat (limited to 'hex.h')
-rw-r--r--hex.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/hex.h b/hex.h
new file mode 100644
index 0000000..af9cb34
--- /dev/null
+++ b/hex.h
@@ -0,0 +1,19 @@
+/* hex.h */
+/*****************************************************************************/
+/* AS-Portierung */
+/* */
+/* Dezimal-->Hexadezimal-Wandlung, Grossbuchstaben */
+/* */
+/* Historie: 2. 6.1996 */
+/* */
+/*****************************************************************************/
+
+extern char *HexNibble(Byte inp);
+
+extern char *HexByte(Byte inp);
+
+extern char *HexWord(Word inp);
+
+extern char *HexLong(LongWord inp);
+
+extern void hex_init(void);