GEOS SDK TechDocs
|
|
5.1 Comparing Strings
|
5.3 Casing
LocalStringLength(), LocalStringSize()
There are two routines which determine how long a string is.
LocalStringLength()
returns the number of characters making up the string, not including the null terminator, if any.
LocalStringSize()
returns the number of bytes in a string, again not counting any null terminators. Normally these two values will be the same, but any applications which want to support double byte character support will need separate functions to handle those characters that take more than one byte to represent.
GEOS SDK TechDocs
|
|
5.1 Comparing Strings
|
5.3 Casing