/src/wrappers/glib/partially-implemented/g_compare_function.e
http://github.com/tybor/Liberty · Specman e · 9 lines · 7 code · 2 blank · 0 comment · 6 complexity · 36225d21817dca99060f104a8f2f6771 MD5 · raw file
- GCompareFunc ()
- gint (*GCompareFunc) (gconstpointer a,
- gconstpointer b);
- Specifies the type of a comparison function used to compare two values. The function should return a negative integer if the first value comes before the second, 0 if they are equal, or a positive integer if the first value comes after the second.
- a : a value.
- b : a value to compare with.
- Returns : negative value if a < b; zero if a = b; positive value if a > b.