X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcc65%2Ftypecmp.h;h=65258573804d74a1019ed91cc202705d05a305e4;hb=85885001b133e2dc320b6f6459259afa69784ca8;hp=6ccaa33713fe9a8c1dfc8d7716b78767afa987b0;hpb=44fd1082ae807a0b6b4046c65914e20a7e27101c;p=cc65 diff --git a/src/cc65/typecmp.h b/src/cc65/typecmp.h index 6ccaa3371..652585738 100644 --- a/src/cc65/typecmp.h +++ b/src/cc65/typecmp.h @@ -1,8 +1,8 @@ /*****************************************************************************/ /* */ -/* typecmp.h */ +/* typecmp.h */ /* */ -/* Type compare function for the cc65 C compiler */ +/* Type compare function for the cc65 C compiler */ /* */ /* */ /* */ @@ -43,26 +43,26 @@ /*****************************************************************************/ -/* Data */ +/* Data */ /*****************************************************************************/ /* Degree of type compatibility. Must be in ascending order */ typedef enum { - TC_INCOMPATIBLE, /* Distinct types */ - TC_SIGN_DIFF, /* Signedness differs */ + TC_INCOMPATIBLE, /* Distinct types */ + TC_SIGN_DIFF, /* Signedness differs */ TC_COMPATIBLE = TC_SIGN_DIFF, /* Compatible types */ - TC_QUAL_DIFF, /* Types differ in qualifier of pointer */ - TC_STRICT_COMPATIBLE, /* Strict compatibility */ - TC_EQUAL, /* Types are equal */ - TC_IDENTICAL /* Types are identical */ + TC_QUAL_DIFF, /* Types differ in qualifier of pointer */ + TC_STRICT_COMPATIBLE, /* Strict compatibility */ + TC_EQUAL, /* Types are equal */ + TC_IDENTICAL /* Types are identical */ } typecmp_t; /*****************************************************************************/ -/* Code */ +/* Code */ /*****************************************************************************/