Size of string in buffer. */
| 179 | } |
| 180 | /** Size of string in buffer. */ |
| 181 | lenpos_t length() const { |
| 182 | return sLen; |
| 183 | } |
| 184 | /** Read access to a character of the string. */ |
| 185 | char operator[](lenpos_t i) const { |
| 186 | return (s && i < sSize) ? s[i] : '\0'; |
no outgoing calls
no test coverage detected