home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.4 / Group3 / assert.h < prev    next >
C/C++ Source or Header  |  1998-12-24  |  1KB  |  69 lines

  1. /* 
  2.  * assert.h
  3.  *
  4.  * Define the assert macro for debug output.
  5.  *
  6.  * This file is part of the Mingw32 package.
  7.  *
  8.  * Contributors:
  9.  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
  10.  *
  11.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  12.  *
  13.  *  This source code is offered for use in the public domain. You may
  14.  *  use, modify or distribute it freely.
  15.  *
  16.  *  This code is distributed in the hope that it will be useful but
  17.  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
  18.  *  DISCLAMED. This includes but is not limited to warranties of
  19.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  20.  *
  21.  * $Revision: 2.2 $
  22.  * $Author: colin $
  23.  * $Date: 1998/01/26 04:45:56 $
  24.  *
  25.  */
  26.  
  27. #ifndef _ASSERT_H_
  28. #define    _ASSERT_H_
  29.  
  30. #ifndef RC_INVOKED
  31.  
  32. #ifdef    __cplusplus
  33. extern "C" {
  34. #endif
  35.  
  36. #ifdef NDEBUG
  37.  
  38. /*
  39.  * If not debugging, assert does nothing.
  40.  */
  41. #define assert(x)    ((void)0);
  42.  
  43. #else /* debugging enabled */
  44.  
  45. /*
  46.  * CRTDLL nicely supplies a function which does the actual output and
  47.  * call to abort.
  48.  */
  49. void    _assert (const char* szExpression, const char* szFileName, int nLine)
  50. #ifdef    __GNUC__
  51.     __attribute__ ((noreturn))
  52. #endif
  53.     ;
  54.  
  55. /*
  56.  * Definition of the assert macro.
  57.  */
  58. #define assert(x)    if(!(x)) _assert( #x , __FILE__, __LINE__);
  59. #endif    /* NDEBUG */
  60.  
  61. #ifdef    __cplusplus
  62. }
  63. #endif
  64.  
  65. #endif /* Not RC_INVOKED */
  66.  
  67. #endif /* Not _ASSERT_H_ */
  68.  
  69.