Apache 1.3 API Documentation

Routine ap_base64decode

Definition:

int ap_base64decode(char *plain_dst, const char *coded_src);
     

Usage example:

char *decoded;
const char *bufcoded;
int l;
decoded = (char *) ap_palloc(p, 1 + ap_base64decode_len(bufcoded));
l = ap_base64decode(decoded, bufcoded);
decoded[l] = '\0'; /* make binary sequence into string */
     

No documentation available.


Previous: ap_auth_type Next: ap_base64decode_binary

Table of Contents (Routines, Structures, Data Cells, Constants)