| 188 * @param ptr1 pointer one |
188 * @param ptr1 pointer one |
| 189 * @param ptr2 pointer two |
189 * @param ptr2 pointer two |
| 190 * @return -1 if ptr1 is less than ptr2, 0 if both are equal, |
190 * @return -1 if ptr1 is less than ptr2, 0 if both are equal, |
| 191 * 1 if ptr1 is greater than ptr2 |
191 * 1 if ptr1 is greater than ptr2 |
| 192 */ |
192 */ |
| 193 int ucx_cmp_ptr(void const *ptr1, void const *ptr2); |
193 int cx_cmp_ptr(void const *ptr1, void const *ptr2); |
| 194 |
194 |
| 195 #ifdef __cplusplus |
195 #ifdef __cplusplus |
| 196 } // extern "C" |
196 } // extern "C" |
| 197 #endif |
197 #endif |
| 198 |
198 |