Table of Contents
StrLength
Get the length of the string contained within a StrBuf.
SYNOPSIS
int StrLength(const StrBuf *Str);
DESCRIPTION
Get the length of the string contained within the StrBuf Str.
PARAMETERS
Parameter | Description |
---|---|
Str | Pointer to a StrBuf string |
RETURNS
The length of the string in Str.
This is alittle like strlen(string) but much faster as the length does not need to be counted, it is already known.