#include "config.h"
#include "cf_assert.h"
#include "cf_defs.h"
#include "gf_tabutil.h"
Go to the source code of this file.
§ conv62()
Definition at line 22 of file gf_tabutil.cc.
27 return 'A' + char(
i-10);
29 return 'a' + char(
i-36);
§ convback62()
Definition at line 40 of file gf_tabutil.cc.
42 if ( c >=
'0' && c <=
'9' )
43 return int(c) - int(
'0');
44 else if ( c >=
'A' && c <=
'Z' )
45 return int(c) - int(
'A') + 10;
47 return int(c) - int(
'a') + 36;
§ convert62()
void convert62 |
( |
int |
i, |
|
|
int |
n, |
|
|
char * |
p |
|
) |
| |
§ convertback62()
int convertback62 |
( |
char * |
p, |
|
|
int |
n |
|
) |
| |
§ gf_tab_numdigits62()
int gf_tab_numdigits62 |
( |
int |
q | ) |
|