Alloc - History
07/23/2005 13:22:46 - gambas
.............................................................................. ..............................................................................
} }
Allocates a memory block containing the specified string and returns Allocates a memory block containing the specified string and returns
a pointer on it. The size of the memory block is the string length a pointer on it.
The size of the memory block is the string length
plus one extra byte for the final null character. plus one extra byte for the final null character.
{seealso {seealso
.............................................................................. ..............................................................................
07/23/2005 13:22:34 - gambas
.............................................................................. ..............................................................................
_Pointer_ *= Alloc (* _Size_ AS Integer [ *,* _Count_ AS Integer ] *)* _Pointer_ *= Alloc (* _Size_ AS Integer [ *,* _Count_ AS Integer ] *)*
} }
Allocates a memory block of _Size_ * _Count_ bytes and returns a pointer on it Allocates a memory block of _Size_ \* _Count_ bytes and returns a pointer on i
By default, _Count_ is one. By default, _Count_ is one.
.............................................................................. ..............................................................................
07/23/2005 13:22:21 - gambas
Creation