Skip to content
Snippets Groups Projects
Select Git revision
  • 69ddc9d98aed72d41e1e6d87328d0c058296a6ac
  • master default
  • labcomm2014_tc31
  • labcomm2014
  • js
  • java_dyn_msg_dec
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.1
  • v2014.0
  • v2013.0
14 results

cppmacros.h

Blame
  • Forked from Anders Blomdell / LabComm
    Source project has a limited visibility.
    cppmacros.h 175 B
    // 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