Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Formatting | Thomas Voss | 2024-06-04 | 1 | -3/+3 |
| | |||||
* | Add encoding-generic macros | Thomas Voss | 2024-05-14 | 1 | -0/+2 |
| | |||||
* | Go all in on string views, and fix manuals | Thomas Voss | 2024-05-04 | 1 | -3/+3 |
| | |||||
* | Add STR() and CONCAT() to macros.h | Thomas Voss | 2024-05-04 | 1 | -0/+6 |
| | |||||
* | Remove TODO() | Thomas Voss | 2024-04-22 | 1 | -2/+0 |
| | | | | | | | | I realized that I can literally just call err() directly like so: err("not implemented"); It doesn’t contain position information… but I don’t really need that. | ||||
* | Add TODO() macro | Thomas Voss | 2024-04-22 | 1 | -0/+2 |
| | |||||
* | Use err() instead of the old errx() | Thomas Voss | 2024-04-15 | 1 | -2/+2 |
| | |||||
* | Use __VA_ARGS__ in *eq() macros | Thomas Voss | 2024-04-11 | 1 | -3/+3 |
| | | | | | | | | | | This allows for the macros to still work when passed macros as arguments that expand into multiple arguments. As an example, the following which was not possible is now possible: struct u8view sv1 = U8V("Kosiče"); struct u8view sv2 = ...; assert(u8eq(U8_ARGS(sv1), U8_ARGS(sv2))); | ||||
* | Use errx() instead of warnx() in ASSUME() | Thomas Voss | 2024-03-15 | 1 | -2/+2 |
| | |||||
* | Add CLAMP() | Thomas Voss | 2024-03-15 | 1 | -2/+3 |
| | |||||
* | Add the U8_ARGS() macro | Thomas Voss | 2024-03-10 | 1 | -3/+3 |
| | |||||
* | Formatting fixes | Thomas Voss | 2024-03-07 | 1 | -2/+4 |
| | |||||
* | Genesis | Thomas Voss | 2024-03-06 | 1 | -0/+22 |