MCPcopy Create free account
hub / github.com/OpenPrinting/cups / httpDecode64

Function httpDecode64

cups/http-support.c:544–558  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

542 */
543
544char * /* O - Decoded string */
545httpDecode64(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/*

Callers

nothing calls this directly

Calls 1

httpDecode64_2Function · 0.85

Tested by

no test coverage detected