Bug #1280 » digest.patch
| ext/digest/bubblebabble/bubblebabble.c (working copy) | ||
|---|---|---|
|
size_t digest_len;
|
||
|
VALUE str;
|
||
|
char *p;
|
||
|
int i, j, seed = 1;
|
||
|
size_t i, j, seed = 1;
|
||
|
static const char vowels[] = {
|
||
|
'a', 'e', 'i', 'o', 'u', 'y'
|
||
|
};
|
||
| ext/digest/digest.c (working copy) | ||
|---|---|---|
|
{
|
||
|
char *digest;
|
||
|
size_t digest_len;
|
||
|
int i;
|
||
|
size_t i;
|
||
|
VALUE str;
|
||
|
char *p;
|
||
|
static const char hex[] = {
|
||