Design Pattern Examples
Overview of object-oriented design patterns
_StringList Struct Reference

Represents a list of pointers to zero-terminated strings. More...

#include <stringlist.h>

Collaboration diagram for _StringList:
Collaboration graph

Public Attributes

const char ** strings
 Pointer to an array of zero-terminated string pointers.
 
size_t strings_count
 Number of strings in the strings list.
 
size_t allocated_count
 The number of strings that can be held in the strings list.
 

Detailed Description

Represents a list of pointers to zero-terminated strings.

Definition at line 15 of file helpers/stringlist.h.

Member Data Documentation

◆ allocated_count

size_t allocated_count

The number of strings that can be held in the strings list.

Definition at line 30 of file helpers/stringlist.h.

◆ strings

const char** strings

Pointer to an array of zero-terminated string pointers.

Definition at line 20 of file helpers/stringlist.h.

◆ strings_count

size_t strings_count

Number of strings in the strings list.

Definition at line 25 of file helpers/stringlist.h.


The documentation for this struct was generated from the following file: