Signature
stock ByteCountToCells(size){ if(!size) { return 1; } return(size + 3) / 4;}
Description
Returns the number of cells required to fit a string of the specified size
(including the null terminator).
Parameters
- size — Number of bytes.
Returns
Minimum number of cells required to fit the byte count.