l_class.h 781 B

123456789101112131415161718192021
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. /* $Header$ */
  6. /* Lint class constants */
  7. #define LFDF 'a' /* Library Function Definition */
  8. #define LVDF 'b' /* Library Variable Definition */
  9. #define EFDF 'c' /* External Function Definition */
  10. #define EVDF 'd' /* External Variable Definition */
  11. #define EFDC 'e' /* External Function Declaration */
  12. #define EVDC 'f' /* External Variable Declaration */
  13. #define IFDC 'g' /* Implicit Function Declaration */
  14. #define SFDF 'h' /* Static Function Definition */
  15. #define SVDF 'i' /* Static Variable Definition */
  16. #define FC 'j' /* Function Call */
  17. #define VU 'k' /* Variable Usage */
  18. #define XXDF 'l' /* Ignore Class */