NAME

sort - sort strings

SYNOPSIS

sort(v, n)
char **v;
int n;

DESCRIPTION

Sort sorts the list v of n null-terminated strings.  The method is based on the quicksort algorithm which is recursive.  The possibility of running out of stack space exists although the amount of space required is logarithmically proportional to n, the length of the list. 

This function supports readdir(misc).  This function does not directly implement any BASIC functions. 

SEE ALSO

readdir(misc)

from The Basmark QuickBASIC Programmer’s Manual by Lawrence Leinweber