Best Practices: Should I create a typedef for byte in C or C++?

Viewed 19377

Do you prefer to see something like t_byte* (with typedef unsigned char t_byte) or unsigned char* in code?

I'm leaning towards t_byte in my own libraries, but have never worked on a large project where this approach was taken, and am wondering about pitfalls.

6 Answers
Related