The C standard (ISO/IEC 9899:2011 or 9899:1999) defines a type ptrdiff_t in <stddef.h>.
The POSIX standard (ISO/IEC 9945; IEEE Std 1003.1-2008) defines a type ssize_t in <sys/types.h>.
- What is the difference between these types (or why were both deemed necessary)?
- Is there an implementation where the underlying base type for
ssize_tis not the same as forptrdiff_t?
ptrdiff_tthat called for the addition ofssize_t? Sometimes, a signed size type is useful, if you want to be able to intermediately have it represent-1. The semantics ofptrdiff_tis "difference between two pointers", which is not exactly the semantics of "size". – Johannes Schaub - litb Dec 27 '11 at 20:55