X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=lang_features.h;h=101aa45f917d91f7babda632b1063c3b66573f3c;hb=64bf64a7a86bc49d31bb0d7a1e9f90f94cf259bb;hp=87591a5936b178d0d1397c5f23e2e8d9c351c9a4;hpb=170b64675d23eb67cace9bcde1ea107fa908fbc4;p=cparser diff --git a/lang_features.h b/lang_features.h index 87591a5..101aa45 100644 --- a/lang_features.h +++ b/lang_features.h @@ -2,12 +2,12 @@ #define LANG_FEATURES_H enum lang_features { - _ANCIENT = 1, - _ANSI = 2, - _C99 = 4, - _GNUC = 8, - _MS = 16, - _ALL = 0xFF + _C89 = 1, + _ANSI = 2, + _C99 = 4, + _GNUC = 8, + _MS = 16, + _ALL = 0xFF }; /* the current C mode/dialect */ @@ -19,4 +19,7 @@ extern unsigned int machine_size; /* true if the char type is signed */ extern bool char_is_signed; +/* true for strict language checking. */ +extern bool strict_mode; + #endif