I am currently dealing with the libpcap and nginx sources. Interesting something like:
- In libpcap they use their own unsigned int type
bpf_u_int32 - In nginx they also use their own unsinged int type
ngx_int_t
What is the advantage of these usages over built-in types?
source
share