|
FreeBASIC
0.91.0
|
Structure containing information about a specific string. More...
#include <fb_string.h>
Data Fields | |
| char * | data |
| pointer to the real string data More... | |
| ssize_t | len |
| String length. More... | |
| ssize_t | size |
| Size of allocated memory block. More... | |
Structure containing information about a specific string.
This structure hols all informations about a specific string. This is required to allow BASIC-style strings that may contain NUL characters.
Definition at line 82 of file fb_string.h.
| char* _FBSTRING::data |
pointer to the real string data
Definition at line 83 of file fb_string.h.
| ssize_t _FBSTRING::len |
String length.
Definition at line 84 of file fb_string.h.
| ssize_t _FBSTRING::size |
Size of allocated memory block.
Definition at line 85 of file fb_string.h.