|
Gama C Library
Gama C API Documentation
|
Represents a dynamic, heap-allocated string. More...
#include <str.h>
Data Fields | |
| size_t | length |
| char * | content |
Represents a dynamic, heap-allocated string.
This structure stores both the current length of the string and a pointer to its content, allowing for efficient string manipulation and growth.
| char* gmStr::content |
Pointer to the heap-allocated string content (null-terminated).
| size_t gmStr::length |
The current length of the string (excluding null terminator).