comparison src/util.c @ 4888:912294585edf

[gaim-migrate @ 5218] alphabet should be static. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 25 Mar 2003 02:30:08 +0000
parents fbfdacf7c611
children 89cb14edf8cf
comparison
equal deleted inserted replaced
4887:7433f6a3569e 4888:912294585edf
344 g_free(cpy); 344 g_free(cpy);
345 return cnt; 345 return cnt;
346 } 346 }
347 347
348 348
349 const char alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" "0123456789+/"; 349 static const char alphabet[] =
350 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
351 "0123456789+/";
350 352
351 /* XXX Find bug */ 353 /* XXX Find bug */
352 char *tobase64(const char *text) 354 char *tobase64(const char *text)
353 { 355 {
354 char *out = NULL; 356 char *out = NULL;