The strz handlers are designed for processing and extracting information from set of asciiz strings stored as a block within memory.
=== Example strz list ===
Here is an example of an strz list definition:
char fruits[] {
"apple\0"
"banana\0"
"cherry\0"
"\0" / This last element marks the end of the list /
}
The first strz element within the list is numbered 1, so getstrzaddr(3, fruits[]) should return the address of cherry from the above list.
=== Return values from strz functions ===