#include <pstring.h>
Public Attributes | |
const char * | begin |
const char * | endnext |
The string is delimited by two pointers, begin and endnext. The length of the string is calculated as endnext - begin. The empty string has begin == endnext.
Contents of the memory area, passed as PSTRING, should always be treated as const.
Contents of the memory area, passed as PSTRING, can be destroyed after the callback function completed. To be used afterwards the string content should be copied.
const char* PSTRING::begin |
pointer to begin of the string.
const char* PSTRING::endnext |
pointer to the byte next to the last char of the string.