1988-09-20 16:44:27 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1988-09-20 16:44:27 +00:00
|
|
|
|
|
|
|
/* Lint class constants */
|
|
|
|
|
|
|
|
#define LFDF 'a' /* Library Function Definition */
|
|
|
|
#define LVDF 'b' /* Library Variable Definition */
|
1991-07-05 11:33:49 +00:00
|
|
|
|
|
|
|
#define PFDF 'd' /* Prototype Function Definition */
|
|
|
|
|
|
|
|
#define EFDF 'f' /* External Function Definition */
|
|
|
|
#define EVDF 'g' /* External Variable Definition */
|
|
|
|
#define EFDC 'h' /* External Function Declaration */
|
|
|
|
#define EVDC 'i' /* External Variable Declaration */
|
|
|
|
|
|
|
|
#define IFDC 'm' /* Implicit Function Declaration */
|
|
|
|
|
|
|
|
#define SFDF 'q' /* Static Function Definition */
|
|
|
|
#define SVDF 'r' /* Static Variable Definition */
|
|
|
|
|
|
|
|
#define FC 'u' /* Function Call */
|
|
|
|
#define VU 'v' /* Variable Usage */
|
|
|
|
|
|
|
|
#define XXDF 'z' /* Ignore Class */
|
|
|
|
|
|
|
|
/* Two meta-definitions */
|
|
|
|
#define MIN_CLASS_CONST LFDF
|
|
|
|
#define MAX_CLASS_CONST XXDF
|
1988-09-20 16:44:27 +00:00
|
|
|
|