Changeset cefb126 in mainline for uspace/lib/c/include/sort.h
- Timestamp:
- 2010-07-02T14:19:30Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 89c57b6
- Parents:
- fe7abd0 (diff), e3ee9b9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/sort.h
rfe7abd0 rcefb126 1 1 /* 2 * Copyright (c) 200 6 Josef Cejka2 * Copyright (c) 2005 Sergey Bondari 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc ia6429 /** @addtogroup libc 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef LIBC_ ia64_LIMITS_H_36 #define LIBC_ ia64_LIMITS_H_35 #ifndef LIBC_SORT_H_ 36 #define LIBC_SORT_H_ 37 37 38 #define LONG_MIN MIN_INT64 39 #define LONG_MAX MAX_INT64 40 #define ULONG_MIN MIN_UINT64 41 #define ULONG_MAX MAX_UINT64 38 #include <sys/types.h> 39 #include <bool.h> 42 40 43 #define SIZE_MIN MIN_UINT64 44 #define SIZE_MAX MAX_UINT64 45 #define SSIZE_MIN MIN_INT64 46 #define SSIZE_MAX MAX_INT64 41 typedef int (* sort_cmp_t)(void *, void *, void *); 42 43 extern bool gsort(void *, size_t, size_t, sort_cmp_t, void *); 44 extern bool qsort(void *, size_t, size_t, sort_cmp_t, void *); 47 45 48 46 #endif
Note:
See TracChangeset
for help on using the changeset viewer.