diff options
Diffstat (limited to 'src/runtime/c/gu/fun.h')
| -rw-r--r-- | src/runtime/c/gu/fun.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/runtime/c/gu/fun.h b/src/runtime/c/gu/fun.h index 0004e9923..f4c1a5a38 100644 --- a/src/runtime/c/gu/fun.h +++ b/src/runtime/c/gu/fun.h @@ -62,4 +62,10 @@ struct GuEquality { bool (*is_equal)(GuEquality* self, const void* a, const void* b); }; +typedef const struct GuOrder GuOrder; + +struct GuOrder { + int (*compare)(GuOrder* self, const void* a, const void* b); +}; + #endif // GU_FUN_H_ |
