src/ucx/utils.h

changeset 285
7be3ae7ffb58
parent 259
2f5dea574a75
child 286
85f55abea563
     1.1 --- a/src/ucx/utils.h	Thu May 03 09:26:06 2018 +0200
     1.2 +++ b/src/ucx/utils.h	Thu May 03 09:49:38 2018 +0200
     1.3 @@ -166,6 +166,16 @@
     1.4  int ucx_intcmp(const void *i1, const void *i2, void *data);
     1.5  
     1.6  /**
     1.7 + * Compares two integers of type long int.
     1.8 + * @param i1 pointer to long integer one
     1.9 + * @param i2 pointer to long integer two
    1.10 + * @param data omitted
    1.11 + * @return -1, if *i1 is less than *i2, 0 if both are equal,
    1.12 + * 1 if *i1 is greater than *i2
    1.13 + */
    1.14 +int ucx_longintcmp(const void *i1, const void *i2, void *data);
    1.15 +
    1.16 +/**
    1.17   * Compares two real numbers of type float.
    1.18   * @param f1 pointer to float one
    1.19   * @param f2 pointer to float two

mercurial