| 206 | return Ptr; |
| 207 | } |
| 208 | inline char *c_ptr_quick() |
| 209 | { |
| 210 | if (Ptr && str_length < Alloced_length) |
| 211 | Ptr[str_length]=0; |
| 212 | return Ptr; |
| 213 | } |
| 214 | inline char *c_ptr_safe() |
| 215 | { |
| 216 | if (Ptr && str_length < Alloced_length) |
no outgoing calls
no test coverage detected