[gaim-migrate @ 3063]
[pidgin-git.git] / src / protocols / zephyr / et_name.c
blobba083e83481aee00c18a65f2fd00745dffc0d3bd
1 /*
2 * Copyright 1987 by MIT Student Information Processing Board
4 * For copyright info, see mit-sipb-copyright.h.
5 */
7 #include <sysdep.h>
8 #include "error_table.h"
9 #include "mit-sipb-copyright.h"
11 #ifndef lint
12 static const char copyright[] =
13 "Copyright 1987,1988 by Student Information Processing Board, Massachusetts Institute of Technology";
14 static const char rcsid_et_name_c[] =
15 "$Header$";
16 #endif
18 static const char char_set[] =
19 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_";
21 const char * error_table_name_r(num, buf)
22 int num;
23 char *buf;
25 int ch;
26 int i;
27 char *p;
29 /* num = aa aaa abb bbb bcc ccc cdd ddd d?? ??? ??? */
30 p = buf;
31 num >>= ERRCODE_RANGE;
32 /* num = ?? ??? ??? aaa aaa bbb bbb ccc ccc ddd ddd */
33 num &= 077777777;
34 /* num = 00 000 000 aaa aaa bbb bbb ccc ccc ddd ddd */
35 for (i = 4; i >= 0; i--) {
36 ch = (num >> BITS_PER_CHAR * i) & ((1 << BITS_PER_CHAR) - 1);
37 if (ch != 0)
38 *p++ = char_set[ch-1];
40 *p = '\0';
41 return(buf);
44 const char * error_table_name(num)
45 int num;
47 static char buf[6];
49 return(error_table_name_r(num, buf));