| 746 | bool real_alloc(size_t arg_length); // Empties old string |
| 747 | bool realloc_raw(size_t arg_length); |
| 748 | bool realloc(size_t arg_length) |
| 749 | { |
| 750 | if (realloc_raw(arg_length+1)) |
| 751 | return TRUE; |
| 752 | Ptr[arg_length]= 0; // This make other funcs shorter |
| 753 | return FALSE; |
| 754 | } |
| 755 | bool realloc_with_extra(size_t arg_length) |
| 756 | { |
| 757 | if (extra_alloc < 4096) |
no outgoing calls
no test coverage detected