/* This file is part of the Project Athena Zephyr Notification System. * It contains source for the ZMakeAscii function. * * Created by: Robert French * * $Source$ * $Author$ * * Copyright (c) 1987 by the Massachusetts Institute of Technology. * For copying and distribution information, see the file * "mit-copyright.h". */ /* $Header$ */ #ifndef lint static char rcsid_ZMakeAscii_c[] = "$Id$"; #endif #include Code_t ZMakeAscii(ptr, len, field, num) register char *ptr; int len; unsigned char *field; int num; { int i; register char *itox_chars = "0123456789ABCDEF"; for (i=0;i> 4)]; *ptr++ = itox_chars[(int) (field[i] & 0xf)]; len -= 2; } *ptr = '\0'; return ZERR_NONE; }