Re: string pointer
- Posted by "Darth Maul, aka Matt" <Uglyfish87 at HOTMAIL.COM> Jul 25, 2000
- 552 views
allocate_string("string") allocates the number of bytes in "string"+1(the
extra byte is for a NULL character which terminates most, if not all,
strings) and pokes it into the resulting pointer, which it returns to you.

