|
Libft
Custom implementation of core libc functions with additional utility helpers.
|
Dynamic buffer structure for efficient string/data manipulation. More...
#include <libft.h>
Data Fields | |
| char * | data |
| Pointer to the allocated data (owned by the buffer). | |
| size_t | cap |
| Current allocated capacity (in bytes). | |
| size_t | len |
| Current length of data in the buffer (in bytes). | |
Dynamic buffer structure for efficient string/data manipulation.
| size_t s_buff::cap |
Current allocated capacity (in bytes).
| char* s_buff::data |
Pointer to the allocated data (owned by the buffer).
| size_t s_buff::len |
Current length of data in the buffer (in bytes).