struct apr_table_entry_t

Overview

The type for each entry in a string-content table Moreā€¦

#include <apr_tables.h>

struct apr_table_entry_t {
    // fields

    char* key;
    char* val;
    apr_uint32_t key_checksum;
};

Detailed Documentation

The type for each entry in a string-content table

Fields

char* key

The key for the current table entry

char* val

The value for the current table entry

apr_uint32_t key_checksum

A checksum for the key, for use by the apr_table internals