Datasegment.com Online Dictionary
  Online Dictionary : C : condition out

condition out


2 definitions found

condition out - Free On-line Dictionary of Computing (26 May 2007) :

  condition out
  
     To prevent a section of code from being compiled by
     surrounding it with a conditional compilation directive
     whose condition is always false.  The canonical examples of
     these directives are "#if 0" (or "#ifdef notdef", though some
     find the latter bletcherous) and "#endif" in C.  Compare
     comment out.
  
     [Jargon File]
  
     (1994-11-30)
  

condition out - Jargon File (4.4.4, 14 Aug 2003) :

  condition out
   vt.
  
     To prevent a section of code from being compiled by surrounding it
     with a conditional-compilation directive whose condition is always
     false. The canonical examples of these directives are #if 0 (or
     #ifdef notdef, though some find the latter bletcherous) and #endif
     in C. Compare comment out.