Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include
File: limits.h
/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
[0] Fix | Delete
This file is part of the GNU C Library.
[1] Fix | Delete
[2] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[3] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[4] Fix | Delete
License as published by the Free Software Foundation; either
[5] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[6] Fix | Delete
[7] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[8] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[9] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[10] Fix | Delete
Lesser General Public License for more details.
[11] Fix | Delete
[12] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[13] Fix | Delete
License along with the GNU C Library; if not, see
[14] Fix | Delete
<http://www.gnu.org/licenses/>. */
[15] Fix | Delete
[16] Fix | Delete
/*
[17] Fix | Delete
* ISO C99 Standard: 7.10/5.2.4.2.1 Sizes of integer types <limits.h>
[18] Fix | Delete
*/
[19] Fix | Delete
[20] Fix | Delete
#ifndef _LIBC_LIMITS_H_
[21] Fix | Delete
#define _LIBC_LIMITS_H_ 1
[22] Fix | Delete
[23] Fix | Delete
#define __GLIBC_INTERNAL_STARTING_HEADER_IMPLEMENTATION
[24] Fix | Delete
#include <bits/libc-header-start.h>
[25] Fix | Delete
[26] Fix | Delete
[27] Fix | Delete
/* Maximum length of any multibyte character in any locale.
[28] Fix | Delete
We define this value here since the gcc header does not define
[29] Fix | Delete
the correct value. */
[30] Fix | Delete
#define MB_LEN_MAX 16
[31] Fix | Delete
[32] Fix | Delete
[33] Fix | Delete
/* If we are not using GNU CC we have to define all the symbols ourself.
[34] Fix | Delete
Otherwise use gcc's definitions (see below). */
[35] Fix | Delete
#if !defined __GNUC__ || __GNUC__ < 2
[36] Fix | Delete
[37] Fix | Delete
/* We only protect from multiple inclusion here, because all the other
[38] Fix | Delete
#include's protect themselves, and in GCC 2 we may #include_next through
[39] Fix | Delete
multiple copies of this file before we get to GCC's. */
[40] Fix | Delete
# ifndef _LIMITS_H
[41] Fix | Delete
# define _LIMITS_H 1
[42] Fix | Delete
[43] Fix | Delete
#include <bits/wordsize.h>
[44] Fix | Delete
[45] Fix | Delete
/* We don't have #include_next.
[46] Fix | Delete
Define ANSI <limits.h> for standard 32-bit words. */
[47] Fix | Delete
[48] Fix | Delete
/* These assume 8-bit `char's, 16-bit `short int's,
[49] Fix | Delete
and 32-bit `int's and `long int's. */
[50] Fix | Delete
[51] Fix | Delete
/* Number of bits in a `char'. */
[52] Fix | Delete
# define CHAR_BIT 8
[53] Fix | Delete
[54] Fix | Delete
/* Minimum and maximum values a `signed char' can hold. */
[55] Fix | Delete
# define SCHAR_MIN (-128)
[56] Fix | Delete
# define SCHAR_MAX 127
[57] Fix | Delete
[58] Fix | Delete
/* Maximum value an `unsigned char' can hold. (Minimum is 0.) */
[59] Fix | Delete
# define UCHAR_MAX 255
[60] Fix | Delete
[61] Fix | Delete
/* Minimum and maximum values a `char' can hold. */
[62] Fix | Delete
# ifdef __CHAR_UNSIGNED__
[63] Fix | Delete
# define CHAR_MIN 0
[64] Fix | Delete
# define CHAR_MAX UCHAR_MAX
[65] Fix | Delete
# else
[66] Fix | Delete
# define CHAR_MIN SCHAR_MIN
[67] Fix | Delete
# define CHAR_MAX SCHAR_MAX
[68] Fix | Delete
# endif
[69] Fix | Delete
[70] Fix | Delete
/* Minimum and maximum values a `signed short int' can hold. */
[71] Fix | Delete
# define SHRT_MIN (-32768)
[72] Fix | Delete
# define SHRT_MAX 32767
[73] Fix | Delete
[74] Fix | Delete
/* Maximum value an `unsigned short int' can hold. (Minimum is 0.) */
[75] Fix | Delete
# define USHRT_MAX 65535
[76] Fix | Delete
[77] Fix | Delete
/* Minimum and maximum values a `signed int' can hold. */
[78] Fix | Delete
# define INT_MIN (-INT_MAX - 1)
[79] Fix | Delete
# define INT_MAX 2147483647
[80] Fix | Delete
[81] Fix | Delete
/* Maximum value an `unsigned int' can hold. (Minimum is 0.) */
[82] Fix | Delete
# define UINT_MAX 4294967295U
[83] Fix | Delete
[84] Fix | Delete
/* Minimum and maximum values a `signed long int' can hold. */
[85] Fix | Delete
# if __WORDSIZE == 64
[86] Fix | Delete
# define LONG_MAX 9223372036854775807L
[87] Fix | Delete
# else
[88] Fix | Delete
# define LONG_MAX 2147483647L
[89] Fix | Delete
# endif
[90] Fix | Delete
# define LONG_MIN (-LONG_MAX - 1L)
[91] Fix | Delete
[92] Fix | Delete
/* Maximum value an `unsigned long int' can hold. (Minimum is 0.) */
[93] Fix | Delete
# if __WORDSIZE == 64
[94] Fix | Delete
# define ULONG_MAX 18446744073709551615UL
[95] Fix | Delete
# else
[96] Fix | Delete
# define ULONG_MAX 4294967295UL
[97] Fix | Delete
# endif
[98] Fix | Delete
[99] Fix | Delete
# ifdef __USE_ISOC99
[100] Fix | Delete
[101] Fix | Delete
/* Minimum and maximum values a `signed long long int' can hold. */
[102] Fix | Delete
# define LLONG_MAX 9223372036854775807LL
[103] Fix | Delete
# define LLONG_MIN (-LLONG_MAX - 1LL)
[104] Fix | Delete
[105] Fix | Delete
/* Maximum value an `unsigned long long int' can hold. (Minimum is 0.) */
[106] Fix | Delete
# define ULLONG_MAX 18446744073709551615ULL
[107] Fix | Delete
[108] Fix | Delete
# endif /* ISO C99 */
[109] Fix | Delete
[110] Fix | Delete
# endif /* limits.h */
[111] Fix | Delete
#endif /* GCC 2. */
[112] Fix | Delete
[113] Fix | Delete
#endif /* !_LIBC_LIMITS_H_ */
[114] Fix | Delete
[115] Fix | Delete
/* Get the compiler's limits.h, which defines almost all the ISO constants.
[116] Fix | Delete
[117] Fix | Delete
We put this #include_next outside the double inclusion check because
[118] Fix | Delete
it should be possible to include this file more than once and still get
[119] Fix | Delete
the definitions from gcc's header. */
[120] Fix | Delete
#if defined __GNUC__ && !defined _GCC_LIMITS_H_
[121] Fix | Delete
/* `_GCC_LIMITS_H_' is what GCC's file defines. */
[122] Fix | Delete
# include_next <limits.h>
[123] Fix | Delete
#endif
[124] Fix | Delete
[125] Fix | Delete
/* The <limits.h> files in some gcc versions don't define LLONG_MIN,
[126] Fix | Delete
LLONG_MAX, and ULLONG_MAX. Instead only the values gcc defined for
[127] Fix | Delete
ages are available. */
[128] Fix | Delete
#if defined __USE_ISOC99 && defined __GNUC__
[129] Fix | Delete
# ifndef LLONG_MIN
[130] Fix | Delete
# define LLONG_MIN (-LLONG_MAX-1)
[131] Fix | Delete
# endif
[132] Fix | Delete
# ifndef LLONG_MAX
[133] Fix | Delete
# define LLONG_MAX __LONG_LONG_MAX__
[134] Fix | Delete
# endif
[135] Fix | Delete
# ifndef ULLONG_MAX
[136] Fix | Delete
# define ULLONG_MAX (LLONG_MAX * 2ULL + 1)
[137] Fix | Delete
# endif
[138] Fix | Delete
#endif
[139] Fix | Delete
[140] Fix | Delete
/* The integer width macros are not defined by GCC's <limits.h> before
[141] Fix | Delete
GCC 7, or if _GNU_SOURCE rather than
[142] Fix | Delete
__STDC_WANT_IEC_60559_BFP_EXT__ is used to enable this feature. */
[143] Fix | Delete
#if __GLIBC_USE (IEC_60559_BFP_EXT)
[144] Fix | Delete
# ifndef CHAR_WIDTH
[145] Fix | Delete
# define CHAR_WIDTH 8
[146] Fix | Delete
# endif
[147] Fix | Delete
# ifndef SCHAR_WIDTH
[148] Fix | Delete
# define SCHAR_WIDTH 8
[149] Fix | Delete
# endif
[150] Fix | Delete
# ifndef UCHAR_WIDTH
[151] Fix | Delete
# define UCHAR_WIDTH 8
[152] Fix | Delete
# endif
[153] Fix | Delete
# ifndef SHRT_WIDTH
[154] Fix | Delete
# define SHRT_WIDTH 16
[155] Fix | Delete
# endif
[156] Fix | Delete
# ifndef USHRT_WIDTH
[157] Fix | Delete
# define USHRT_WIDTH 16
[158] Fix | Delete
# endif
[159] Fix | Delete
# ifndef INT_WIDTH
[160] Fix | Delete
# define INT_WIDTH 32
[161] Fix | Delete
# endif
[162] Fix | Delete
# ifndef UINT_WIDTH
[163] Fix | Delete
# define UINT_WIDTH 32
[164] Fix | Delete
# endif
[165] Fix | Delete
# ifndef LONG_WIDTH
[166] Fix | Delete
# define LONG_WIDTH __WORDSIZE
[167] Fix | Delete
# endif
[168] Fix | Delete
# ifndef ULONG_WIDTH
[169] Fix | Delete
# define ULONG_WIDTH __WORDSIZE
[170] Fix | Delete
# endif
[171] Fix | Delete
# ifndef LLONG_WIDTH
[172] Fix | Delete
# define LLONG_WIDTH 64
[173] Fix | Delete
# endif
[174] Fix | Delete
# ifndef ULLONG_WIDTH
[175] Fix | Delete
# define ULLONG_WIDTH 64
[176] Fix | Delete
# endif
[177] Fix | Delete
#endif /* Use IEC_60559_BFP_EXT. */
[178] Fix | Delete
[179] Fix | Delete
#ifdef __USE_POSIX
[180] Fix | Delete
/* POSIX adds things to <limits.h>. */
[181] Fix | Delete
# include <bits/posix1_lim.h>
[182] Fix | Delete
#endif
[183] Fix | Delete
[184] Fix | Delete
#ifdef __USE_POSIX2
[185] Fix | Delete
# include <bits/posix2_lim.h>
[186] Fix | Delete
#endif
[187] Fix | Delete
[188] Fix | Delete
#ifdef __USE_XOPEN
[189] Fix | Delete
# include <bits/xopen_lim.h>
[190] Fix | Delete
#endif
[191] Fix | Delete
[192] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function