Skip to content
Snippets Groups Projects
cppmacros.h 175 B
Newer Older
  • Learn to ignore specific revisions
  • Oscar Olsson's avatar
    Oscar Olsson committed
    // C Preprocessor macros.
    #ifndef CPP_MACROS_H
    #define CPP_MACROS_H
    
    #define X_EMPTY(mac) var ## 1
    #define EMPTY(mac) X_EMPTY(mac)	// Returns 1 if macro mac is empty.
    
    #endif