Apache 1.3 API Documentation

Routine ap_clear_table

Definition:

void ap_clear_table(table *t);
     

Usage example:

table tmp;
tmp = r->headers_out;
r->headers_out = r->err_headers_out;
r->err_headers_out = tmp;
ap_clear_table(r->err_headers_out);
     

Clears the contents of t, readying it for reuse.

See also:
ap_copy_table, ap_make_table, ap_overlay_tables, ap_table_add, ap_table_addn, ap_table_do, ap_table_get, ap_table_merge, ap_table_mergen, ap_table_set, ap_table_setn, ap_table_unset, table

Previous: ap_clear_pool Next: ap_close_piped_log

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