Sujet : Re: Top 10 most common hard skills listed on resumes...
De : jameskuyper (at) *nospam* alumni.caltech.edu (James Kuyper)
Groupes : comp.lang.cDate : 11. Sep 2024, 22:12:39
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vbt147$3qa18$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
User-Agent : Mozilla Thunderbird
On 9/9/24 18:04, Waldek Hebisch wrote:
...
ATM I do not have standard text handy to check, but AFAIR several
_types_ in <stdint.h> were not required but optional.
Correct - those are [u]intptr_t, the exact sized types, and the types
(exact, fast, or least) with sizes other than 8, 16, 32, or 64. As a
good general rule, those optional types will be missing only if the
implementation doesn't support any integers of the specified size. What
would you want your code to do on an implementation that doesn't support
the size that you would otherwise specify?