Print scalar initialisers as assignment expressions instead of plain expressions...
[cparser] / types.h
diff --git a/types.h b/types.h
index 622cd1e..04288df 100644 (file)
--- a/types.h
+++ b/types.h
@@ -36,6 +36,7 @@ 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;
@@ -93,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