1 /* $NetBSD: hd_init.c,v 1.2 2006/01/25 15:27:42 kleink Exp $ */ 2 3 /**************************************************************** 4 5 The author of this software is David M. Gay. 6 7 Copyright (C) 2000 by Lucent Technologies 8 All Rights Reserved 9 10 Permission to use, copy, modify, and distribute this software and 11 its documentation for any purpose and without fee is hereby 12 granted, provided that the above copyright notice appear in all 13 copies and that both that the copyright notice and this 14 permission notice and warranty disclaimer appear in supporting 15 documentation, and that the name of Lucent or any of its entities 16 not be used in advertising or publicity pertaining to 17 distribution of the software without specific, written prior 18 permission. 19 20 LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 21 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. 22 IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY 23 SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 24 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER 25 IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 26 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 27 THIS SOFTWARE. 28 29 ****************************************************************/ 30 31 /* Please send bug reports to David M. Gay (dmg at acm dot org, 32 * with " at " changed at "@" and " dot " changed to "."). */ 33 #include <LibConfig.h> 34 35 #include "gdtoaimp.h" 36 37 unsigned char hexdig[256]; 38 39 static void 40 #ifdef KR_headers 41 htinit(h, s, inc) unsigned char *h; CONST unsigned char *s; int inc; 42 #else 43 htinit(unsigned char *h, CONST unsigned char *s, int inc) 44 #endif 45 { 46 int i, j; 47 for(i = 0; (j = s[i]) !=0; i++) 48 h[j] = (unsigned char)(i + inc); 49 } 50 51 void 52 hexdig_init_D2A(Void) 53 { 54 #define USC (CONST unsigned char *) 55 htinit(hexdig, USC "0123456789", 0x10); 56 htinit(hexdig, USC "abcdef", 0x10 + 10); 57 htinit(hexdig, USC "ABCDEF", 0x10 + 10); 58 } 59