|
>>>>> "Massimo" == Massimo Sala <massimo.sala.71@gmail.com> writes:
Massimo> I don't get the purpose of MAX_SIZET instead of the plain
Massimo> SIZE_MAX.
SIZE_MAX doesn't exist in c89 as far as I know.
Though the MAX_SIZET definition is unnecessarily complicated, it
suffices to use (size_t)-1, but this isn't a strictly valid _expression_
in preprocessor conditionals either because of the cast.
--
Andrew.