cmp_int icon indicating copy to clipboard operation
cmp_int copied to clipboard

C implementation of C++ Utility functions https://en.cppreference.com/w/cpp/utility/intcmp

Results 1 cmp_int issues
Sort by recently updated
recently updated
newest added

The case listing in the macros is quite restrictive. I think better would be something like ``` C #define is_signed(X) \ _Generic((X), \ bool: 0, \ char: (char)-1 < 0,...

enhancement