Comment on Ask HN: Favorite pointer tricks in C?Comments−dlsspy15yIt's kind of an anti-pattern, but I've found this to actually enhance clarity in a few places: int moved = (is_reading ? read : write)(fd, buf, len);
Comments
It's kind of an anti-pattern, but I've found this to actually enhance clarity in a few places: