| 674 | */ |
| 675 | |
| 676 | char * /* O - Encoded string */ |
| 677 | httpEncode64(char *out, /* I - String to write to */ |
| 678 | const char *in) /* I - String to read from */ |
| 679 | { |
| 680 | return (httpEncode64_2(out, 512, in, (int)strlen(in))); |
| 681 | } |
| 682 | |
| 683 | |
| 684 | /* |
nothing calls this directly
no test coverage detected