Warning: mysqli::__construct(): (HY000/1203): User howardkn already has more than 'max_user_connections' active connections in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\includes\artfuncs.php on line 21
Failed to connect to MySQL: (1203) User howardkn already has more than 'max_user_connections' active connections
Warning: mysqli::query(): Couldn't fetch mysqli in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\index.php on line 66
Article <vbt147$3qa18$1@dont-email.me>
Deutsch   English   Français   Italiano  
<vbt147$3qa18$1@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: James Kuyper <jameskuyper@alumni.caltech.edu>
Newsgroups: comp.lang.c
Subject: Re: Top 10 most common hard skills listed on resumes...
Date: Wed, 11 Sep 2024 17:12:39 -0400
Organization: A noiseless patient Spider
Lines: 14
Message-ID: <vbt147$3qa18$1@dont-email.me>
References: <vab101$3er$1@reader1.panix.com> <vbepcb$q6p2$1@dont-email.me>
 <vbgb5q$1ruv8$1@paganini.bofh.team> <vbhbbb$1blt4$1@dont-email.me>
 <vbipp5$24kl5$1@paganini.bofh.team> <vbk0d9$1tajm$1@dont-email.me>
 <vbkpfc$27l2o$1@paganini.bofh.team> <vbl3am$228vv$1@dont-email.me>
 <vblfgb$2dkij$1@paganini.bofh.team> <vblhp7$249ug$1@dont-email.me>
 <vbloje$2e34o$1@paganini.bofh.team> <vbmeae$2bn2v$2@dont-email.me>
 <vbn8pe$2g9i6$2@paganini.bofh.team> <vbnaqt$2g0vc$1@dont-email.me>
 <vbnre4$2h8k3$1@paganini.bofh.team>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 11 Sep 2024 23:12:40 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="eda9371c304bdacc2b6596a246f43a5e";
	logging-data="4007976"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX1/7xGLStZFkFvS5wnXL0f6+Ky7KzADsqyY="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:l6sua25n6y103bANUFZRTO7Ob28=
In-Reply-To: <vbnre4$2h8k3$1@paganini.bofh.team>
Content-Language: en-US
Bytes: 2107

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?