X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=types.h;h=04288dfe451dd7882e7b0ffa79c416ab8fc47803;hb=476ee2175bb415aa90f98a5c2f12390097dcdff2;hp=ddb8d41bba62f85de204eb8842656c6239233634;hpb=bc624857ad8caa300dd45554676e5013c8235880;p=cparser diff --git a/types.h b/types.h index ddb8d41..04288df 100644 --- a/types.h +++ b/types.h @@ -24,6 +24,7 @@ extern type_t *type_error_type; +extern type_t *type_bool; extern type_t *type_char; extern type_t *type_const_char; extern type_t *type_double; @@ -33,7 +34,9 @@ extern type_t *type_long_double; extern type_t *type_long_long; extern type_t *type_long; extern type_t *type_short; +extern type_t *type_unsigned_short; extern type_t *type_signed_char; +extern type_t *type_unsigned_char; extern type_t *type_unsigned_int; extern type_t *type_unsigned_long_long; extern type_t *type_unsigned_long; @@ -91,5 +94,6 @@ extern type_t *type_unsigned_int64; extern type_t *type_unsigned_int128; void init_basic_types(void); +void init_builtin_types(void); #endif