| 212 | return Ptr; |
| 213 | } |
| 214 | inline char *c_ptr_safe() |
| 215 | { |
| 216 | if (Ptr && str_length < Alloced_length) |
| 217 | Ptr[str_length]=0; |
| 218 | else |
| 219 | (void) realloc(str_length); |
| 220 | return Ptr; |
| 221 | } |
| 222 | LEX_STRING lex_string() const |
| 223 | { |
| 224 | LEX_STRING lex_string = { (char*) ptr(), length() }; |
no outgoing calls
no test coverage detected