Skip to content
Snippets Groups Projects
Select Git revision
  • 8a0eeb9d3b3c2e7b1549a9fbf0c960ac1f9bae89
  • master default
  • labcomm2006
  • typedefs
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.4
  • v2006.0
  • v2014.3
  • v2014.2
  • v2014.1
  • v2014.0
  • v2013.0
16 results

test_encoder_decoder.py

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