4 * Revision 1.1 2001/04/04 05:43:38 wang
5 * First commit: compiles on Linux, Amiga, Windows, Windows CE, generic gcc
7 * Revision 1.2 1999/11/26 12:52:25 bnv
10 * Revision 1.1 1998/07/02 17:18:00 bnv
17 /* --------------- Lreradix ----------------- */
19 Lreradix( const PLstr to
, const PLstr subject
,
20 const int fromradix
, const int toradix
)
22 /* and suppose that subject is string */
23 /* radix must be from 2 to 16 */
27 for (j
=0; j
<LLEN(*subject
); j
++)
28 integer
= integer
*fromradix
+ HEXVAL(LSTR(*subject
)[j
]);
30 /* ... incomplete ... */