]>
Commit | Line | Data |
---|---|---|
8bdad19e MF |
1 | /* Copyright (C) 1995, 1996, 2000 Free Software Foundation, Inc. |
2 | This file is part of the GNU C Library. | |
3 | Contributed by Ulrich Drepper <[email protected]>, August 1995. | |
4 | ||
5 | The GNU C Library is free software; you can redistribute it and/or | |
6 | modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 2.1 of the License, or (at your option) any later version. | |
9 | ||
10 | The GNU C Library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
266bdc1f MF |
16 | License along with the GNU C Library; if not, see |
17 | <http://www.gnu.org/licenses/>. */ | |
8bdad19e MF |
18 | |
19 | #include <stdlib.h> | |
20 | ||
21 | /* Conversion table. */ | |
22 | static const char conv_table[64] = | |
23 | { | |
24 | '.', '/', '0', '1', '2', '3', '4', '5', | |
25 | '6', '7', '8', '9', 'A', 'B', 'C', 'D', | |
26 | 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', | |
27 | 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', | |
28 | 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', | |
29 | 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', | |
30 | 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', | |
31 | 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' | |
32 | }; | |
33 | ||
11975abb | 34 | char * l64a (long int n) |
8bdad19e MF |
35 | { |
36 | unsigned long int m = (unsigned long int) n; | |
37 | static char result[7]; | |
4298bd6e | 38 | char *p; |
8bdad19e MF |
39 | |
40 | /* The standard says that only 32 bits are used. */ | |
4298bd6e DV |
41 | if (sizeof(m) != 4) |
42 | m &= 0xffffffff; | |
8bdad19e | 43 | |
4298bd6e DV |
44 | /* The value for N == 0 is defined to be the empty string, |
45 | * this code provides that as well. */ | |
46 | p = result; | |
47 | while (m) | |
8bdad19e | 48 | { |
4298bd6e | 49 | *p++ = conv_table[m & 0x3f]; |
8bdad19e MF |
50 | m >>= 6; |
51 | } | |
4298bd6e | 52 | *p = '\0'; |
8bdad19e | 53 | |
8a32a323 | 54 | return result; |
8bdad19e | 55 | } |