| [Overview][Procedures and functions][Index] | 
Allocate memory for a new null-terminated string on the heap
Source position: strings.pp line 97
| function stralloc( | 
| L: SizeInt | 
| ):PChar; | 
StrAlloc reserves memory on the heap for a string with length Len, terminating #0 included, and returns a pointer to it.
If there is not enough memory, a run-time error occurs.
| 
 | Allocate room for new null-terminated string. | |
| 
 | Copy a pascal string to a null-terminated string |