Monday, 17 February 2025

Show HN: Generic and variadic printing library in C https://bit.ly/3QomieE

Show HN: Generic and variadic printing library in C I was making a printf wrapper with some extra features when I thought "hey, now that C has _Generic, is there any way to combine that with varargs?". The closest solution I found online was this: https://bit.ly/3dFmlAl Which works, but only under GCC (since it uses an extension instead of _Generic) and its not very robust in general. So, I rolled my own, with a different macro hack and I think it came out reasonably well. Its not documented yet, because I'm unsure about the interface, but extending it with user structs is also possible without editing the header. (Example in 'example-user-type.c'.) https://bit.ly/40Xohv8 February 17, 2025 at 10:54PM

No comments:

Post a Comment