Home / lang / alloc 
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration   
fr  de  es  it  nl  pl  pt  pt_BR  mk  ca  ar  fa  vi  ja  ru  zh  zh_TW  eo 
Documentation
History
 
Alloc
Syntax
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
Syntax
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