Apache 1.3 API Documentation

Routine ap_base64encode_len

Definition:

int ap_base64encode_len(int len);
     

Usage example:

int needed;
int l;
char *string;
needed = ap_base64encode_len(strlen(string));
buffer = (char *) ap_palloc(p, needed + 1);
l = ap_base64encode(buffer, string, strlen(string));
     

No documentation available.


Previous: ap_base64encode_binary Next: ap_basic_http_header

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