Home > lang > alloc 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
Alloc
Pointer = Alloc ( Size AS Integer [ , Count AS Integer ] )

Allocates a memory block of Size * Count bytes and returns a pointer on it.

By default, Count is one.

Alloc
Pointer = Alloc ( String AS String )

Allocates a memory block containing the specified string and returns a pointer on it.

The size of the memory block is the string length plus one extra byte for the final null character.

See also

External Function Management