Module C_types


module C_types: sig  end


type builtin_type =
| Tchar
| Tschar
| Tuchar
| Tshort
| Tushort
| Tint
| Tuint
| Tlong
| Tulong
| Tlonglong
| Tulonglong
| Tfloat
| Tdouble
| Tlongdouble


type signedness =
| Tsigned
| Tunsigned


type type_qualifier =
| Const
| Volatile