If I do a `typedef` in C or C++, when should I add `_t` at the end of typedef’ed type? [duplicate]

In POSIX, names ending with _t are reserved, so if you are targeting a POSIX system (e.g., Linux), you should not end your types with _t.

Leave a Comment