Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/c++/v1/climits is written in an unsupported language. File is not indexed.

0001 // -*- C++ -*-
0002 //===----------------------------------------------------------------------===//
0003 //
0004 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0005 // See https://llvm.org/LICENSE.txt for license information.
0006 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0007 //
0008 //===----------------------------------------------------------------------===//
0009 
0010 #ifndef _LIBCPP_CLIMITS
0011 #define _LIBCPP_CLIMITS
0012 
0013 /*
0014     climits synopsis
0015 
0016 Macros:
0017 
0018     CHAR_BIT
0019     SCHAR_MIN
0020     SCHAR_MAX
0021     UCHAR_MAX
0022     CHAR_MIN
0023     CHAR_MAX
0024     MB_LEN_MAX
0025     SHRT_MIN
0026     SHRT_MAX
0027     USHRT_MAX
0028     INT_MIN
0029     INT_MAX
0030     UINT_MAX
0031     LONG_MIN
0032     LONG_MAX
0033     ULONG_MAX
0034     LLONG_MIN   // C99
0035     LLONG_MAX   // C99
0036     ULLONG_MAX  // C99
0037 
0038 */
0039 
0040 #if __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
0041 #  include <__cxx03/climits>
0042 #else
0043 #  include <__config>
0044 
0045 #  include <limits.h>
0046 
0047 #  if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
0048 #    pragma GCC system_header
0049 #  endif
0050 
0051 #endif // __cplusplus < 201103L && defined(_LIBCPP_USE_FROZEN_CXX03_HEADERS)
0052 
0053 #endif // _LIBCPP_CLIMITS