Sun Java System Access Manager 7 2005Q4 C API Reference

am_string_set_t

Structure for containing a set of strings used by various interfaces in the SDK.

The am_string_set_allocate() and am_string_set_destroy() interfaces can be used to allocate and free space for this structure.

Syntax

#include "am_string_set.h"
typedef struct {
    int size;
    char **strings;
} am_string_set_t;

Members

This structure has the following members:

size

Number of strings in the strings field

strings

List of strings

Details

See C SDK samples for examples of how this structure is used.