src/ucx/utils.h

changeset 314
5d28dc8f0765
parent 313
b7753273f0fd
child 328
2bf1da3c411e
     1.1 --- a/src/ucx/utils.h	Mon May 14 18:23:35 2018 +0200
     1.2 +++ b/src/ucx/utils.h	Mon May 14 18:25:20 2018 +0200
     1.3 @@ -172,7 +172,7 @@
     1.4   * @return -1, if *i1 is less than *i2, 0 if both are equal,
     1.5   * 1 if *i1 is greater than *i2
     1.6   */
     1.7 -int ucx_intcmp(const void *i1, const void *i2, void *data);
     1.8 +int ucx_cmp_int(const void *i1, const void *i2, void *data);
     1.9  
    1.10  /**
    1.11   * Compares two integers of type long int.
    1.12 @@ -182,7 +182,7 @@
    1.13   * @return -1, if *i1 is less than *i2, 0 if both are equal,
    1.14   * 1 if *i1 is greater than *i2
    1.15   */
    1.16 -int ucx_longintcmp(const void *i1, const void *i2, void *data);
    1.17 +int ucx_cmp_longint(const void *i1, const void *i2, void *data);
    1.18  
    1.19  
    1.20  /**
    1.21 @@ -192,7 +192,7 @@
    1.22   * @param data omitted
    1.23   * @return i1 minus i2
    1.24   */
    1.25 -intmax_t ucx_intdist(const void *i1, const void *i2, void *data);
    1.26 +intmax_t ucx_dist_int(const void *i1, const void *i2, void *data);
    1.27  
    1.28  /**
    1.29   * Distance function for integers of type long int.
    1.30 @@ -201,7 +201,7 @@
    1.31   * @param data omitted
    1.32   * @return i1 minus i2
    1.33   */
    1.34 -intmax_t ucx_longintdist(const void *i1, const void *i2, void *data);
    1.35 +intmax_t ucx_dist_longint(const void *i1, const void *i2, void *data);
    1.36  
    1.37  /**
    1.38   * Compares two real numbers of type float.

mercurial