Get the length of a binary string
UInt_Type bstrlen (BString_Type s)
The bstrlen function may be used to obtain the length of a binary string. A binary string differs from an ordinary string (a C string) in that a binary string may include null chracters.
variable s = "hello\0"; len = bstrlen (s); % ==> len = 6 len = strlen (s); % ==> len = 5