diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-04-07 01:28:23 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-04-07 01:28:23 +0300 |
| commit | e668bbc06ff95939627ef6082b1ca5cd4d198df6 (patch) | |
| tree | 75e31dd04cda4b90f6020470e0d2b5117b084e97 /core/tri.h | |
| parent | ab276c733ce9dc80983e5c8ae5c530e1477cf990 (diff) | |
| download | tri-e668bbc06ff95939627ef6082b1ca5cd4d198df6.tar.gz tri-e668bbc06ff95939627ef6082b1ca5cd4d198df6.zip | |
implement some more branches
Diffstat (limited to 'core/tri.h')
| -rw-r--r-- | core/tri.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -586,6 +586,11 @@ static inline bool tri_eq(tri_t a, tri_t b) return a == b; } +static inline bool tri_ne(tri_t a, tri_t b) +{ + return a != b; +} + static inline bool tri_lt(tri_t a, tri_t b) { tri_t r = tri_sub(a, b); |
