hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit cc0fbdfcb5f505032fecbb5e8d067681a150a93a
parent 14ea72134d7ad21c53f2ea8f98e2bba77f2835c7
Author: Sebastian <sebastian@sebsite.pw>
Date:   Tue, 23 Jan 2024 15:57:10 -0500

types::c: add nullptr_t to README

nullptr_t was added in C23, as the type of the nullptr constant.

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mtypes/c/README | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/types/c/README b/types/c/README @@ -9,6 +9,7 @@ Some C types aren't provided by this module, since they are provided by the Hare language itself: - _Bool, bool -> bool +- nullptr_t -> null - (signed) int -> int - size_t -> size - unsigned int -> uint