X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=types.h;h=285974e768716cf3d92079bc8e56d1dd8f9a98db;hb=11507d826b772a31d0e47c6be0af7705bcaa956e;hp=ca61283e7d27f50e1a205316acb0267b0eb08b8a;hpb=979fce13621246b706781035786b5d11a8e2f608;p=cparser diff --git a/types.h b/types.h index ca61283..285974e 100644 --- a/types.h +++ b/types.h @@ -53,8 +53,10 @@ extern type_t *type_unsigned_long_ptr; extern type_t *type_short_ptr; extern type_t *type_signed_char_ptr; extern type_t *type_void_ptr; +extern type_t *type_const_void; extern type_t *type_const_void_ptr; extern type_t *type_void_ptr_restrict; +extern type_t *type_const_void_ptr_restrict; extern type_t *type_char_ptr_ptr; @@ -68,6 +70,8 @@ extern type_t *type_wchar_t; extern type_t *type_const_wchar_t; extern type_t *type_wchar_ptr_t; extern type_t *type_wint_t; +extern type_t *type_int32_t; +extern type_t *type_int64_t; extern type_t *type_intmax_t_ptr; extern type_t *type_ptrdiff_t_ptr; @@ -102,6 +106,6 @@ extern type_t *type_unsigned_int64; extern type_t *type_unsigned_int128; void init_basic_types(void); -void init_builtin_types(void); +void init_wchar_types(type_t *base); #endif