ArrayStringToPPchar

Concert an array of string to an array of null-terminated strings

Declaration

Source position: systemh.inc line 1655

  function ArrayStringToPPchar(const S: Array of AnsiString; 
                              reserveentries: LongInt) : PPChar;

Description

ArrayStringToPPchar creates an array of null-terminated strings that point to strings which are the same as the strings in the array S. The function returns a pointer to this array. The array and the strings it contains must be disposed of after being used, because it they are allocated on the heap.

The ReserveEntries parameter tells ArrayStringToPPchar to allocate room at the end of the array for another ReserveEntries entries.

Errors

If not enough memory is available, an error may occur.

See also

Name Description
StringToPPChar Split string in list of null-terminated strings