> can someone show me some code to sort an array, I want to send a sorted
> array to the SysFormPointerArrayToStrings function and use LstSetListChoices
> to set the list.
> 
> I am trying to use the SysInsertionSort function with little luck.

If your array is in dynamic memory (that is, on the stack or the heap) 
all you need to do is apply the sorting algorithm of your choice. No OS 
calls are necessary. "Algorithms in C" by Robert Sedgewick would be a 
good source.

--
Roger Chaplin
<[EMAIL PROTECTED]>

Reply via email to