| 542 | */ |
| 543 | |
| 544 | char * /* O - Decoded string */ |
| 545 | httpDecode64(char *out, /* I - String to write to */ |
| 546 | const char *in) /* I - String to read from */ |
| 547 | { |
| 548 | int outlen; /* Output buffer length */ |
| 549 | |
| 550 | |
| 551 | /* |
| 552 | * Use the old maximum buffer size for binary compatibility... |
| 553 | */ |
| 554 | |
| 555 | outlen = 512; |
| 556 | |
| 557 | return (httpDecode64_2(out, &outlen, in)); |
| 558 | } |
| 559 | |
| 560 | |
| 561 | /* |
nothing calls this directly
no test coverage detected