]> andersk Git - splint.git/blob - src/Headers/flags.h
8bb783edc0f28805680211e757360bee48cfc913
[splint.git] / src / Headers / flags.h
1 /*
2 ** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2001.
3 ** See ../LICENSE for license information.
4 **
5 */
6 # ifndef FLAGS_H
7 # define FLAGS_H
8
9
10 typedef enum 
11 {
12   FK_ABSTRACT, FK_ANSI, FK_BEHAVIOR, FK_BOUNDS,
13   FK_COMMENTS, FK_COMPLETE, FK_CONTROL, FK_DEBUG, FK_DECL,
14   FK_SYNCOMMENTS, FK_HINTS, FK_SYSTEMFUNCTIONS, FK_ITS4,
15   FK_DEF, FK_DIRECT, FK_DISPLAY, FK_EFFECT, FK_EXPORT,
16   FK_EXPOSURE, 
17   FK_EXTENSIBLE,
18   FK_FORMAT, FK_GLOBAL, FK_GLOBALS, FK_HEADERS,
19   FK_HELP, FK_IGNORERET, FK_INIT, FK_ITER, FK_LIBS, FK_LIMITS,
20   FK_MACROS, FK_MEMORY, FK_MODIFIES, FK_NAMES, FK_NONE,
21   FK_NULL, FK_OPS, FK_PRED, FK_PREPROC, FK_SECRET,
22   FK_SUPPRESS, FK_SYNTAX, FK_TYPE, FK_TYPEEQ, FK_NUMBERS, 
23   FK_POINTER, FK_UNRECOG, FK_USE, FK_BOOL, FK_ALIAS, 
24   FK_PROTOS, FK_SPEC, 
25   FK_IMPLICIT, FK_FILES, FK_ERRORS, FK_UNSPEC, 
26   FK_SPEED, FK_PARAMS, FK_DEAD, FK_SECURITY,
27   FK_LEAK, FK_ARRAY, FK_OBSOLETE, FK_PREFIX, FK_WARNUSE
28 } flagkind;
29
30 extern void listAllCategories (void);
31 extern void printAlphaFlags (void);
32 extern void printAllFlags (bool p_desc, bool p_full);
33 extern void printFlagManual (bool p_html);
34
35 extern void flagcode_recordError (flagcode p_f);
36 extern void flagcode_recordSuppressed (flagcode p_f);
37 extern int flagcode_numReported (flagcode p_f);
38 extern bool flagcode_isNamePrefixFlag (flagcode p_f);
39
40 extern /*@only@*/ cstring  describeFlag (cstring p_flagname);
41
42 extern flagcode flags_identifyFlag (cstring p_s) /*@modifies g_warningstream@*/ ;
43 extern flagcode flags_identifyFlagQuiet (cstring p_s) /*@modifies nothing@*/ ;
44
45 extern void setValueFlag (flagcode p_opt, cstring p_arg);
46 extern void setStringFlag (flagcode p_opt, /*@only@*/ cstring p_arg);
47
48 extern /*@observer@*/ cstring flagcode_unparse (flagcode p_code) /*@*/ ;
49 extern int flagcode_valueIndex (flagcode p_f) /*@*/ ;
50 extern int flagcode_stringIndex (flagcode p_f) /*@*/ ;
51
52 extern bool flagcode_equal (flagcode p_code1, flagcode p_code2) /*@*/ ;
53 # define flagcode_equal(c1, c2) ((c1) == (c2))
54
55 extern /*@observer@*/ cstring flagcodeHint (flagcode p_f);
56
57 extern flagkind identifyCategory (cstring p_s) /*@*/ ;
58 extern void printCategory (flagkind p_kind) /*@modifies g_warningstream@*/ ;
59
60 extern bool flagcode_isInvalid (flagcode p_f) /*@*/ ;
61 # define flagcode_isInvalid(f) ((f) == INVALID_FLAG)
62
63 extern bool flagcode_isSkip (flagcode p_f) /*@*/ ;
64 # define flagcode_isSkip(f) ((f) == SKIP_FLAG)
65
66 extern bool flagcode_isValid (flagcode p_f) /*@*/ ;
67 # define flagcode_isValid(f) ((f) != INVALID_FLAG)
68
69 extern bool flagcode_isPassThrough (/*@sef@*/ flagcode p_f);
70 # define flagcode_isPassThrough(f) ((f) == FLG_DEFINE || (f) == FLG_UNDEFINE)
71
72 extern bool flagcode_isLibraryFlag (/*@sef@*/ flagcode p_f);
73 # define flagcode_isLibraryFlag(f) \
74    ((f) == FLG_POSIXLIB || (f) == FLG_POSIXSTRICTLIB \
75     || (f) == FLG_UNIXLIB || (f) == FLG_UNIXSTRICTLIB \
76     || (f) == FLG_STRICTLIB || (f) == FLG_NOLIB \
77     || (f) == FLG_ANSILIB)
78
79 extern bool flagcode_isWarnUseFlag (/*@sef@*/ flagcode p_f);
80 # define flagcode_isWarnUseFlag(f) \
81    ((f) == FLG_BUFFEROVERFLOW || (f) == FLG_BUFFEROVERFLOWHIGH)
82
83 extern bool flagcode_hasNumber (flagcode p_f) /*@*/ ;
84 extern bool flagcode_hasChar (flagcode p_f) /*@*/ ;
85 extern bool flagcode_hasString (flagcode p_f) /*@*/ ;
86 extern bool flagcode_hasArgument (flagcode p_f) /*@*/ ;
87
88 /*@constant observer cstring DEFAULT_MODE;@*/
89 # define DEFAULT_MODE (cstring_makeLiteralTemp ("standard"))
90
91 extern void flags_initMod (void) /*@modifies internalState@*/ ;
92
93 extern bool isMode (cstring p_s) /*@*/ ;
94 extern /*@only@*/ cstring describeModes (void) /*@modifies g_messagestream@*/ ;
95 extern void summarizeErrors (void) /*@modifies g_messagestream@*/ ;
96
97 extern bool flagcode_isNameChecksFlag (flagcode p_f) /*@*/ ;
98 extern bool flagcode_isIdemFlag (flagcode p_f) /*@*/ ;
99 extern bool flagcode_isModeFlag (flagcode p_f) /*@*/ ;
100 extern bool flagcode_isSpecialFlag (flagcode p_f) /*@*/ ;
101 extern bool flagcode_isGlobalFlag (flagcode p_f) /*@*/ ;
102 extern bool flagcode_isMessageControlFlag (flagcode p_f) /*@*/ ;
103  
104 # else
105 # error "Multiple include"
106 # endif
107
108
109
110
111
112
113
114
115
116
117
118
119
This page took 0.070609 seconds and 3 git commands to generate.