diff options
Diffstat (limited to 'include/iprt/sort.h')
-rw-r--r-- | include/iprt/sort.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/iprt/sort.h b/include/iprt/sort.h index f1afa14d6..dd4e93e50 100644 --- a/include/iprt/sort.h +++ b/include/iprt/sort.h @@ -32,6 +32,8 @@ * @ingroup grp_rt * @{ */ +RT_C_DECLS_BEGIN + /** * Callback for comparing two array elements. * @@ -118,6 +120,7 @@ RTDECL(bool) RTSortIsSorted(void const *pvArray, size_t cElements, size_t cbElem */ RTDECL(bool) RTSortApvIsSorted(void const * const *papvArray, size_t cElements, PFNRTSORTCMP pfnCmp, void *pvUser); +RT_C_DECLS_END /** @} */ |