Sun, 05 Jan 2025 22:00:39 +0100
update ucx
174 | 1 | /* |
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
3 | * | |
4 | * Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved. | |
5 | * | |
6 | * Redistribution and use in source and binary forms, with or without | |
7 | * modification, are permitted provided that the following conditions are met: | |
8 | * | |
9 | * 1. Redistributions of source code must retain the above copyright | |
10 | * notice, this list of conditions and the following disclaimer. | |
11 | * | |
12 | * 2. Redistributions in binary form must reproduce the above copyright | |
13 | * notice, this list of conditions and the following disclaimer in the | |
14 | * documentation and/or other materials provided with the distribution. | |
15 | * | |
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
26 | * POSSIBILITY OF SUCH DAMAGE. | |
27 | */ | |
28 | /** | |
440 | 29 | * @file compare.h |
30 | * @brief A collection of simple compare functions. | |
31 | * @author Mike Becker | |
32 | * @author Olaf Wintermann | |
33 | * @copyright 2-Clause BSD License | |
174 | 34 | */ |
35 | ||
36 | #ifndef UCX_COMPARE_H | |
37 | #define UCX_COMPARE_H | |
38 | ||
39 | #include "common.h" | |
40 | ||
41 | #ifdef __cplusplus | |
42 | extern "C" { | |
43 | #endif | |
44 | ||
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
45 | /** |
440 | 46 | * A comparator function comparing two arbitrary values. |
47 | * | |
48 | * All functions from compare.h with the cx_cmp prefix are | |
49 | * compatible with this signature and can be used as | |
50 | * compare function for collections, or other implementations | |
51 | * that need to be type-agnostic. | |
52 | * | |
53 | * For simple comparisons the cx_vcmp family of functions | |
54 | * can be used, but they are NOT compatible with this function | |
55 | * pointer. | |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
56 | */ |
440 | 57 | cx_attr_nonnull |
58 | cx_attr_nodiscard | |
59 | typedef int (*cx_compare_func)( | |
60 | const void *left, | |
61 | const void *right | |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
62 | ); |
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
63 | |
174 | 64 | /** |
65 | * Compares two integers of type int. | |
66 | * | |
440 | 67 | * @note the parameters deliberately have type @c void* to be |
68 | * compatible with #cx_compare_func without the need of a cast. | |
69 | * | |
174 | 70 | * @param i1 pointer to integer one |
71 | * @param i2 pointer to integer two | |
440 | 72 | * @retval -1 if the left argument is less than the right argument |
73 | * @retval 0 if both arguments are equal | |
74 | * @retval 1 if the left argument is greater than the right argument | |
174 | 75 | */ |
440 | 76 | cx_attr_nonnull |
77 | cx_attr_nodiscard | |
324 | 78 | int cx_cmp_int(const void *i1, const void *i2); |
174 | 79 | |
80 | /** | |
440 | 81 | * Compares two ints. |
82 | * | |
83 | * @param i1 integer one | |
84 | * @param i2 integer two | |
85 | * @retval -1 if the left argument is less than the right argument | |
86 | * @retval 0 if both arguments are equal | |
87 | * @retval 1 if the left argument is greater than the right argument | |
88 | */ | |
89 | cx_attr_nodiscard | |
90 | int cx_vcmp_int(int i1, int i2); | |
91 | ||
92 | /** | |
174 | 93 | * Compares two integers of type long int. |
94 | * | |
440 | 95 | * @note the parameters deliberately have type @c void* to be |
96 | * compatible with #cx_compare_func without the need of a cast. | |
97 | * | |
174 | 98 | * @param i1 pointer to long integer one |
99 | * @param i2 pointer to long integer two | |
440 | 100 | * @retval -1 if the left argument is less than the right argument |
101 | * @retval 0 if both arguments are equal | |
102 | * @retval 1 if the left argument is greater than the right argument | |
174 | 103 | */ |
440 | 104 | cx_attr_nonnull |
105 | cx_attr_nodiscard | |
324 | 106 | int cx_cmp_longint(const void *i1, const void *i2); |
174 | 107 | |
108 | /** | |
440 | 109 | * Compares two long ints. |
110 | * | |
111 | * @param i1 long integer one | |
112 | * @param i2 long integer two | |
113 | * @retval -1 if the left argument is less than the right argument | |
114 | * @retval 0 if both arguments are equal | |
115 | * @retval 1 if the left argument is greater than the right argument | |
116 | */ | |
117 | cx_attr_nodiscard | |
118 | int cx_vcmp_longint(long int i1, long int i2); | |
119 | ||
120 | /** | |
174 | 121 | * Compares two integers of type long long. |
122 | * | |
440 | 123 | * @note the parameters deliberately have type @c void* to be |
124 | * compatible with #cx_compare_func without the need of a cast. | |
125 | * | |
174 | 126 | * @param i1 pointer to long long one |
127 | * @param i2 pointer to long long two | |
440 | 128 | * @retval -1 if the left argument is less than the right argument |
129 | * @retval 0 if both arguments are equal | |
130 | * @retval 1 if the left argument is greater than the right argument | |
174 | 131 | */ |
440 | 132 | cx_attr_nonnull |
133 | cx_attr_nodiscard | |
324 | 134 | int cx_cmp_longlong(const void *i1, const void *i2); |
174 | 135 | |
136 | /** | |
440 | 137 | * Compares twolong long ints. |
138 | * | |
139 | * @param i1 long long int one | |
140 | * @param i2 long long int two | |
141 | * @retval -1 if the left argument is less than the right argument | |
142 | * @retval 0 if both arguments are equal | |
143 | * @retval 1 if the left argument is greater than the right argument | |
144 | */ | |
145 | cx_attr_nodiscard | |
146 | int cx_vcmp_longlong(long long int i1, long long int i2); | |
147 | ||
148 | /** | |
174 | 149 | * Compares two integers of type int16_t. |
150 | * | |
440 | 151 | * @note the parameters deliberately have type @c void* to be |
152 | * compatible with #cx_compare_func without the need of a cast. | |
153 | * | |
174 | 154 | * @param i1 pointer to int16_t one |
155 | * @param i2 pointer to int16_t two | |
440 | 156 | * @retval -1 if the left argument is less than the right argument |
157 | * @retval 0 if both arguments are equal | |
158 | * @retval 1 if the left argument is greater than the right argument | |
174 | 159 | */ |
440 | 160 | cx_attr_nonnull |
161 | cx_attr_nodiscard | |
324 | 162 | int cx_cmp_int16(const void *i1, const void *i2); |
174 | 163 | |
164 | /** | |
440 | 165 | * Compares two integers of type int16_t. |
166 | * | |
167 | * @param i1 int16_t one | |
168 | * @param i2 int16_t two | |
169 | * @retval -1 if the left argument is less than the right argument | |
170 | * @retval 0 if both arguments are equal | |
171 | * @retval 1 if the left argument is greater than the right argument | |
172 | */ | |
173 | cx_attr_nodiscard | |
174 | int cx_vcmp_int16(int16_t i1, int16_t i2); | |
175 | ||
176 | /** | |
174 | 177 | * Compares two integers of type int32_t. |
178 | * | |
440 | 179 | * @note the parameters deliberately have type @c void* to be |
180 | * compatible with #cx_compare_func without the need of a cast. | |
181 | * | |
174 | 182 | * @param i1 pointer to int32_t one |
183 | * @param i2 pointer to int32_t two | |
440 | 184 | * @retval -1 if the left argument is less than the right argument |
185 | * @retval 0 if both arguments are equal | |
186 | * @retval 1 if the left argument is greater than the right argument | |
174 | 187 | */ |
440 | 188 | cx_attr_nonnull |
189 | cx_attr_nodiscard | |
324 | 190 | int cx_cmp_int32(const void *i1, const void *i2); |
174 | 191 | |
192 | /** | |
440 | 193 | * Compares two integers of type int32_t. |
194 | * | |
195 | * @param i1 int32_t one | |
196 | * @param i2 int32_t two | |
197 | * @retval -1 if the left argument is less than the right argument | |
198 | * @retval 0 if both arguments are equal | |
199 | * @retval 1 if the left argument is greater than the right argument | |
200 | */ | |
201 | cx_attr_nodiscard | |
202 | int cx_vcmp_int32(int32_t i1, int32_t i2); | |
203 | ||
204 | /** | |
174 | 205 | * Compares two integers of type int64_t. |
206 | * | |
440 | 207 | * @note the parameters deliberately have type @c void* to be |
208 | * compatible with #cx_compare_func without the need of a cast. | |
209 | * | |
174 | 210 | * @param i1 pointer to int64_t one |
211 | * @param i2 pointer to int64_t two | |
440 | 212 | * @retval -1 if the left argument is less than the right argument |
213 | * @retval 0 if both arguments are equal | |
214 | * @retval 1 if the left argument is greater than the right argument | |
174 | 215 | */ |
440 | 216 | cx_attr_nonnull |
217 | cx_attr_nodiscard | |
324 | 218 | int cx_cmp_int64(const void *i1, const void *i2); |
174 | 219 | |
220 | /** | |
440 | 221 | * Compares two integers of type int64_t. |
222 | * | |
223 | * @param i1 int64_t one | |
224 | * @param i2 int64_t two | |
225 | * @retval -1 if the left argument is less than the right argument | |
226 | * @retval 0 if both arguments are equal | |
227 | * @retval 1 if the left argument is greater than the right argument | |
228 | */ | |
229 | cx_attr_nodiscard | |
230 | int cx_vcmp_int64(int64_t i1, int64_t i2); | |
231 | ||
232 | /** | |
174 | 233 | * Compares two integers of type unsigned int. |
234 | * | |
440 | 235 | * @note the parameters deliberately have type @c void* to be |
236 | * compatible with #cx_compare_func without the need of a cast. | |
237 | * | |
174 | 238 | * @param i1 pointer to unsigned integer one |
239 | * @param i2 pointer to unsigned integer two | |
440 | 240 | * @retval -1 if the left argument is less than the right argument |
241 | * @retval 0 if both arguments are equal | |
242 | * @retval 1 if the left argument is greater than the right argument | |
174 | 243 | */ |
440 | 244 | cx_attr_nonnull |
245 | cx_attr_nodiscard | |
324 | 246 | int cx_cmp_uint(const void *i1, const void *i2); |
174 | 247 | |
248 | /** | |
440 | 249 | * Compares two unsigned ints. |
250 | * | |
251 | * @param i1 unsigned integer one | |
252 | * @param i2 unsigned integer two | |
253 | * @retval -1 if the left argument is less than the right argument | |
254 | * @retval 0 if both arguments are equal | |
255 | * @retval 1 if the left argument is greater than the right argument | |
256 | */ | |
257 | cx_attr_nodiscard | |
258 | int cx_vcmp_uint(unsigned int i1, unsigned int i2); | |
259 | ||
260 | /** | |
174 | 261 | * Compares two integers of type unsigned long int. |
262 | * | |
440 | 263 | * @note the parameters deliberately have type @c void* to be |
264 | * compatible with #cx_compare_func without the need of a cast. | |
265 | * | |
174 | 266 | * @param i1 pointer to unsigned long integer one |
267 | * @param i2 pointer to unsigned long integer two | |
440 | 268 | * @retval -1 if the left argument is less than the right argument |
269 | * @retval 0 if both arguments are equal | |
270 | * @retval 1 if the left argument is greater than the right argument | |
174 | 271 | */ |
440 | 272 | cx_attr_nonnull |
273 | cx_attr_nodiscard | |
324 | 274 | int cx_cmp_ulongint(const void *i1, const void *i2); |
174 | 275 | |
276 | /** | |
440 | 277 | * Compares two unsigned long ints. |
278 | * | |
279 | * @param i1 unsigned long integer one | |
280 | * @param i2 unsigned long integer two | |
281 | * @retval -1 if the left argument is less than the right argument | |
282 | * @retval 0 if both arguments are equal | |
283 | * @retval 1 if the left argument is greater than the right argument | |
284 | */ | |
285 | cx_attr_nodiscard | |
286 | int cx_vcmp_ulongint(unsigned long int i1, unsigned long int i2); | |
287 | ||
288 | /** | |
174 | 289 | * Compares two integers of type unsigned long long. |
290 | * | |
440 | 291 | * @note the parameters deliberately have type @c void* to be |
292 | * compatible with #cx_compare_func without the need of a cast. | |
293 | * | |
174 | 294 | * @param i1 pointer to unsigned long long one |
295 | * @param i2 pointer to unsigned long long two | |
440 | 296 | * @retval -1 if the left argument is less than the right argument |
297 | * @retval 0 if both arguments are equal | |
298 | * @retval 1 if the left argument is greater than the right argument | |
174 | 299 | */ |
440 | 300 | cx_attr_nonnull |
301 | cx_attr_nodiscard | |
324 | 302 | int cx_cmp_ulonglong(const void *i1, const void *i2); |
174 | 303 | |
304 | /** | |
440 | 305 | * Compares two unsigned long long ints. |
306 | * | |
307 | * @param i1 unsigned long long one | |
308 | * @param i2 unsigned long long two | |
309 | * @retval -1 if the left argument is less than the right argument | |
310 | * @retval 0 if both arguments are equal | |
311 | * @retval 1 if the left argument is greater than the right argument | |
312 | */ | |
313 | cx_attr_nodiscard | |
314 | int cx_vcmp_ulonglong(unsigned long long int i1, unsigned long long int i2); | |
315 | ||
316 | /** | |
174 | 317 | * Compares two integers of type uint16_t. |
318 | * | |
440 | 319 | * @note the parameters deliberately have type @c void* to be |
320 | * compatible with #cx_compare_func without the need of a cast. | |
321 | * | |
174 | 322 | * @param i1 pointer to uint16_t one |
323 | * @param i2 pointer to uint16_t two | |
440 | 324 | * @retval -1 if the left argument is less than the right argument |
325 | * @retval 0 if both arguments are equal | |
326 | * @retval 1 if the left argument is greater than the right argument | |
174 | 327 | */ |
440 | 328 | cx_attr_nonnull |
329 | cx_attr_nodiscard | |
324 | 330 | int cx_cmp_uint16(const void *i1, const void *i2); |
174 | 331 | |
332 | /** | |
440 | 333 | * Compares two integers of type uint16_t. |
334 | * | |
335 | * @param i1 uint16_t one | |
336 | * @param i2 uint16_t two | |
337 | * @retval -1 if the left argument is less than the right argument | |
338 | * @retval 0 if both arguments are equal | |
339 | * @retval 1 if the left argument is greater than the right argument | |
340 | */ | |
341 | cx_attr_nodiscard | |
342 | int cx_vcmp_uint16(uint16_t i1, uint16_t i2); | |
343 | ||
344 | /** | |
174 | 345 | * Compares two integers of type uint32_t. |
346 | * | |
440 | 347 | * @note the parameters deliberately have type @c void* to be |
348 | * compatible with #cx_compare_func without the need of a cast. | |
349 | * | |
174 | 350 | * @param i1 pointer to uint32_t one |
351 | * @param i2 pointer to uint32_t two | |
440 | 352 | * @retval -1 if the left argument is less than the right argument |
353 | * @retval 0 if both arguments are equal | |
354 | * @retval 1 if the left argument is greater than the right argument | |
174 | 355 | */ |
440 | 356 | cx_attr_nonnull |
357 | cx_attr_nodiscard | |
324 | 358 | int cx_cmp_uint32(const void *i1, const void *i2); |
174 | 359 | |
360 | /** | |
440 | 361 | * Compares two integers of type uint32_t. |
362 | * | |
363 | * @param i1 uint32_t one | |
364 | * @param i2 uint32_t two | |
365 | * @retval -1 if the left argument is less than the right argument | |
366 | * @retval 0 if both arguments are equal | |
367 | * @retval 1 if the left argument is greater than the right argument | |
368 | */ | |
369 | cx_attr_nodiscard | |
370 | int cx_vcmp_uint32(uint32_t i1, uint32_t i2); | |
371 | ||
372 | /** | |
174 | 373 | * Compares two integers of type uint64_t. |
374 | * | |
440 | 375 | * @note the parameters deliberately have type @c void* to be |
376 | * compatible with #cx_compare_func without the need of a cast. | |
377 | * | |
174 | 378 | * @param i1 pointer to uint64_t one |
379 | * @param i2 pointer to uint64_t two | |
440 | 380 | * @retval -1 if the left argument is less than the right argument |
381 | * @retval 0 if both arguments are equal | |
382 | * @retval 1 if the left argument is greater than the right argument | |
174 | 383 | */ |
440 | 384 | cx_attr_nonnull |
385 | cx_attr_nodiscard | |
324 | 386 | int cx_cmp_uint64(const void *i1, const void *i2); |
174 | 387 | |
388 | /** | |
440 | 389 | * Compares two integers of type uint64_t. |
390 | * | |
391 | * @param i1 uint64_t one | |
392 | * @param i2 uint64_t two | |
393 | * @retval -1 if the left argument is less than the right argument | |
394 | * @retval 0 if both arguments are equal | |
395 | * @retval 1 if the left argument is greater than the right argument | |
396 | */ | |
397 | cx_attr_nodiscard | |
398 | int cx_vcmp_uint64(uint64_t i1, uint64_t i2); | |
399 | ||
400 | /** | |
174 | 401 | * Compares two real numbers of type float with precision 1e-6f. |
402 | * | |
440 | 403 | * @note the parameters deliberately have type @c void* to be |
404 | * compatible with #cx_compare_func without the need of a cast. | |
405 | * | |
174 | 406 | * @param f1 pointer to float one |
407 | * @param f2 pointer to float two | |
440 | 408 | * @retval -1 if the left argument is less than the right argument |
409 | * @retval 0 if both arguments are equal | |
410 | * @retval 1 if the left argument is greater than the right argument | |
174 | 411 | */ |
440 | 412 | cx_attr_nonnull |
413 | cx_attr_nodiscard | |
414 | int cx_cmp_float(const void *f1, const void *f2); | |
174 | 415 | |
440 | 416 | /** |
417 | * Compares two real numbers of type float with precision 1e-6f. | |
418 | * | |
419 | * @param f1 float one | |
420 | * @param f2 float two | |
421 | * @retval -1 if the left argument is less than the right argument | |
422 | * @retval 0 if both arguments are equal | |
423 | * @retval 1 if the left argument is greater than the right argument | |
424 | */ | |
425 | cx_attr_nodiscard | |
426 | int cx_vcmp_float(float f1, float f2); | |
174 | 427 | |
428 | /** | |
429 | * Compares two real numbers of type double with precision 1e-14. | |
430 | * | |
440 | 431 | * @note the parameters deliberately have type @c void* to be |
432 | * compatible with #cx_compare_func without the need of a cast. | |
433 | * | |
174 | 434 | * @param d1 pointer to double one |
435 | * @param d2 pointer to double two | |
440 | 436 | * @retval -1 if the left argument is less than the right argument |
437 | * @retval 0 if both arguments are equal | |
438 | * @retval 1 if the left argument is greater than the right argument | |
174 | 439 | */ |
440 | 440 | cx_attr_nonnull |
441 | cx_attr_nodiscard | |
442 | int cx_cmp_double(const void *d1, const void *d2); | |
443 | ||
444 | /** | |
445 | * Convenience function | |
446 | * | |
447 | * @param d1 double one | |
448 | * @param d2 double two | |
449 | * @retval -1 if the left argument is less than the right argument | |
450 | * @retval 0 if both arguments are equal | |
451 | * @retval 1 if the left argument is greater than the right argument | |
452 | */ | |
453 | cx_attr_nodiscard | |
454 | int cx_vcmp_double(double d1, double d2); | |
174 | 455 | |
456 | /** | |
457 | * Compares the integer representation of two pointers. | |
458 | * | |
440 | 459 | * @note the parameters deliberately have type @c void* to be |
460 | * compatible with #cx_compare_func without the need of a cast. | |
461 | * | |
324 | 462 | * @param ptr1 pointer to pointer one (const intptr_t*) |
463 | * @param ptr2 pointer to pointer two (const intptr_t*) | |
440 | 464 | * @retval -1 if the left argument is less than the right argument |
465 | * @retval 0 if both arguments are equal | |
466 | * @retval 1 if the left argument is greater than the right argument | |
174 | 467 | */ |
440 | 468 | cx_attr_nonnull |
469 | cx_attr_nodiscard | |
470 | int cx_cmp_intptr(const void *ptr1, const void *ptr2); | |
471 | ||
472 | /** | |
473 | * Compares the integer representation of two pointers. | |
474 | * | |
475 | * @param ptr1 pointer one | |
476 | * @param ptr2 pointer two | |
477 | * @retval -1 if the left argument is less than the right argument | |
478 | * @retval 0 if both arguments are equal | |
479 | * @retval 1 if the left argument is greater than the right argument | |
480 | */ | |
481 | cx_attr_nodiscard | |
482 | int cx_vcmp_intptr(intptr_t ptr1, intptr_t ptr2); | |
174 | 483 | |
484 | /** | |
485 | * Compares the unsigned integer representation of two pointers. | |
486 | * | |
440 | 487 | * @note the parameters deliberately have type @c void* to be |
488 | * compatible with #cx_compare_func without the need of a cast. | |
489 | * | |
324 | 490 | * @param ptr1 pointer to pointer one (const uintptr_t*) |
491 | * @param ptr2 pointer to pointer two (const uintptr_t*) | |
440 | 492 | * @retval -1 if the left argument is less than the right argument |
493 | * @retval 0 if both arguments are equal | |
494 | * @retval 1 if the left argument is greater than the right argument | |
174 | 495 | */ |
440 | 496 | cx_attr_nonnull |
497 | cx_attr_nodiscard | |
498 | int cx_cmp_uintptr(const void *ptr1, const void *ptr2); | |
499 | ||
500 | /** | |
501 | * Compares the unsigned integer representation of two pointers. | |
502 | * | |
503 | * @param ptr1 pointer one | |
504 | * @param ptr2 pointer two | |
505 | * @retval -1 if the left argument is less than the right argument | |
506 | * @retval 0 if both arguments are equal | |
507 | * @retval 1 if the left argument is greater than the right argument | |
508 | */ | |
509 | cx_attr_nodiscard | |
510 | int cx_vcmp_uintptr(uintptr_t ptr1, uintptr_t ptr2); | |
174 | 511 | |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
512 | /** |
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
513 | * Compares the pointers specified in the arguments without de-referencing. |
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
514 | * |
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
515 | * @param ptr1 pointer one |
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
516 | * @param ptr2 pointer two |
440 | 517 | * @retval -1 if the left argument is less than the right argument |
518 | * @retval 0 if both arguments are equal | |
519 | * @retval 1 if the left argument is greater than the right argument | |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
520 | */ |
440 | 521 | cx_attr_nonnull |
522 | cx_attr_nodiscard | |
523 | int cx_cmp_ptr(const void *ptr1, const void *ptr2); | |
253
087cc9216f28
initial newapi GTK port
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
174
diff
changeset
|
524 | |
174 | 525 | #ifdef __cplusplus |
526 | } // extern "C" | |
527 | #endif | |
528 | ||
529 | #endif //UCX_COMPARE_H |