Dynamic String Linked List Class
implementation:
Long Linked List of pointers to hybrid string objects.
these classes use an error handler: ErrT (in download source)
local e as ErrT
o.Initialize(e)
this is necessary to trap a memory allocation failure
hybrid object needs internal memory allocated before use:
o.Alloc()
internal memory must be freed before object goes out of scope:
o.Free()
Source: StringListC.zip: Dynamic String Linked List Class. > http://deadtheorywalking.com/pb.aspx
public domain - use at own risk
need to download all files to compile
implementation:
Long Linked List of pointers to hybrid string objects.
these classes use an error handler: ErrT (in download source)
local e as ErrT
o.Initialize(e)
this is necessary to trap a memory allocation failure
hybrid object needs internal memory allocated before use:
o.Alloc()
internal memory must be freed before object goes out of scope:
o.Free()
Source: StringListC.zip: Dynamic String Linked List Class. > http://deadtheorywalking.com/pb.aspx
public domain - use at own risk
need to download all files to compile
Comment