qsort
- Updated2023-02-21
- 1 minute(s) read
qsort
void qsort (void *baseArrayElement, size_t numberOfElements, size_t elementSize, int (*comparisonFunction)(const void *, const void *));
Purpose
Sorts an array of elements into ascending order according to a comparison function written by the user.
Parameters
Input | ||||||||||
Name | Type | Description | ||||||||
baseArrayElement | void * | Contains a pointer to the initial element of the array that is sorted. | ||||||||
numberOfElements | size_t | Specifies the number of elements in the array that are sorted. | ||||||||
elementSize | size_t | Contains the size in bytes of the array elements that are sorted. | ||||||||
comparisonFunction | int (*)(const void *, const void *) |
Contains the name of a comparison function written by the user. This comparison function must have the following
characteristics:
|
Return Value
None.
Additional Information
Library: ANSI C Library
Include file: ansi_c.h
LabWindows/CVI compatibility: LabWindows/CVI 3.0 and later