gcc 4.7.2 c89
你好,
我正在使用 Apache Portable Runtime 并查看他们的 typedef
typedef short apr_int16_t
typedef int apr_int16_t
typedef size_t apr_size_t /* This is basically the same, so what's the point */
等等
- 那么这一切的意义何在?
- 什么时候应该决定使用 C 的内置标准数据类型或 typedef 的数据类型?
我只是举了一个使用 APR 的例子。不过,我也泛泛而谈。还有 typedef 的数据类型的 stdint.h 头文件。
非常感谢您的任何建议,