aboutsummaryrefslogtreecommitdiffstats
path: root/hex.h
blob: af9cb34ba4b52a8a234365d4760087d4f7052f08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);