Re: "A diagram of C23 basic types"

Liste des GroupesRevenir à cl c 
Sujet : Re: "A diagram of C23 basic types"
De : Keith.S.Thompson+u (at) *nospam* gmail.com (Keith Thompson)
Groupes : comp.lang.c
Date : 03. Apr 2025, 01:41:19
Autres entêtes
Organisation : None to speak of
Message-ID : <85ecya5b68.fsf@nosuchdomain.example.com>
References : 1 2 3 4 5 6 7 8 9 10 11
User-Agent : Gnus/5.13 (Gnus v5.13)
scott@slp53.sl.home (Scott Lurndal) writes:
bart <bc@freeuk.com> writes:
On 02/04/2025 18:29, David Brown wrote:
On 02/04/2025 17:38, bart wrote:
[...]
You also need to include some header (which one?) in order to use it.
 
<stddef.h>, as pretty much any C programmer will know.
>
This program:
>
  void* p = NULL;
>
reports that NULL is undefined, but that can be fixed by including any
of stdio.h, stdlib.h or string.h. Those are the first three I tried;
there may be others.
>
So it is not true that you need include stddef.h, nor obvious that that
is where NULL is defined, if you are used to having it available indirectly.
>
Indeed, and it is well documented.
>
For example, in the POSIX description for the string functions you'll
find the following statement:
 
    [CX] Inclusion of the <string.h> header may also make visible all
         symbols from <stddef.h>. [Option End]
>
This is true for a number of POSIX headers, include those you enumerate
above.
>
[CX] marks a POSIX extension to ISO C.

Interesting.  The C standard says that <string.h> defines NULL and
size_t, both of which are also defined in <stddef.h>.  A number of other
symbols from <stddef.h> are also defined in other headers.  A conforming
implementation may not make any other declarations from <stddef.h>
visible as a result of including <string.h>.  I wonder why POSIX has
that "extension".

In ISO C, this:

    #include <string.h>
    wchar_t w = L'w';

is a constraint violation, and this:

    #include <string.h>
    int wchar_t = 42;
    int main(void){}

is, I believe, strictly conforming.

gcc with glibc on Ubuntu does not implement that extension.
gcc with newlib on Windows/Cygwin does.  Presumably this is an artifact
of the way the respective string.h files are written, having nothing
directly to do with the compiler.

--
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
void Void(void) { Void(); } /* The recursive call of the void */

Date Sujet#  Auteur
2 Apr06:59 * "A diagram of C23 basic types"33Alexis
2 Apr07:02 +- Re: "A diagram of C23 basic types"1Lawrence D'Oliveiro
2 Apr08:02 +* Re: "A diagram of C23 basic types"3Janis Papanagnou
2 Apr08:32 i+- Re: "A diagram of C23 basic types"1Kaz Kylheku
2 Apr10:33 i`- Re: "A diagram of C23 basic types"1David Brown
2 Apr10:57 `* Re: "A diagram of C23 basic types"28bart
2 Apr11:14  `* Re: "A diagram of C23 basic types"27Muttley
2 Apr14:35   +* Re: "A diagram of C23 basic types"23David Brown
2 Apr15:05   i+* Re: "A diagram of C23 basic types"21Muttley
2 Apr15:12   ii+* Re: "A diagram of C23 basic types"7Thiago Adams
2 Apr16:12   iii`* Re: "A diagram of C23 basic types"6Muttley
2 Apr16:33   iii `* Re: "A diagram of C23 basic types"5bart
2 Apr16:51   iii  `* Re: "A diagram of C23 basic types"4Muttley
2 Apr22:31   iii   +* Re: "A diagram of C23 basic types"2Janis Papanagnou
3 Apr02:02   iii   i`- Re: "A diagram of C23 basic types"1Janis Papanagnou
3 Apr01:10   iii   `- Re: "A diagram of C23 basic types"1bart
2 Apr15:28   ii+* Re: "A diagram of C23 basic types"2Michael S
2 Apr16:17   iii`- Re: "A diagram of C23 basic types"1Muttley
2 Apr15:59   ii`* Re: "A diagram of C23 basic types"11David Brown
2 Apr16:26   ii +* Re: "A diagram of C23 basic types"9Muttley
2 Apr16:38   ii i+* Re: "A diagram of C23 basic types"7bart
2 Apr16:53   ii ii+- Re: "A diagram of C23 basic types"1Muttley
2 Apr18:29   ii ii+* Re: "A diagram of C23 basic types"4David Brown
2 Apr19:26   ii iii`* Re: "A diagram of C23 basic types"3bart
2 Apr19:51   ii iii +- Re: "A diagram of C23 basic types"1Kaz Kylheku
3 Apr01:41   ii iii `- Re: "A diagram of C23 basic types"1Keith Thompson
2 Apr21:24   ii ii`- Re: "A diagram of C23 basic types"1Michael S
2 Apr18:23   ii i`- Re: "A diagram of C23 basic types"1David Brown
2 Apr22:43   ii `- Re: "A diagram of C23 basic types"1Janis Papanagnou
2 Apr19:02   i`- Re: "A diagram of C23 basic types"1Kaz Kylheku
2 Apr15:12   `* Re: "A diagram of C23 basic types"3Waldek Hebisch
2 Apr16:16    `* Re: "A diagram of C23 basic types"2Muttley
2 Apr21:09     `- Re: "A diagram of C23 basic types"1Chris M. Thomasson

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal