Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bits
File: wchar.h
/* wchar_t type related definitions.
[0] Fix | Delete
Copyright (C) 2000-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[5] Fix | Delete
License as published by the Free Software Foundation; either
[6] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; if not, see
[15] Fix | Delete
<http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
#ifndef _BITS_WCHAR_H
[18] Fix | Delete
#define _BITS_WCHAR_H 1
[19] Fix | Delete
[20] Fix | Delete
/* The fallback definitions, for when __WCHAR_MAX__ or __WCHAR_MIN__
[21] Fix | Delete
are not defined, give the right value and type as long as both int
[22] Fix | Delete
and wchar_t are 32-bit types. Adding L'\0' to a constant value
[23] Fix | Delete
ensures that the type is correct; it is necessary to use (L'\0' +
[24] Fix | Delete
0) rather than just L'\0' so that the type in C++ is the promoted
[25] Fix | Delete
version of wchar_t rather than the distinct wchar_t type itself.
[26] Fix | Delete
Because wchar_t in preprocessor #if expressions is treated as
[27] Fix | Delete
intmax_t or uintmax_t, the expression (L'\0' - 1) would have the
[28] Fix | Delete
wrong value for WCHAR_MAX in such expressions and so cannot be used
[29] Fix | Delete
to define __WCHAR_MAX in the unsigned case. */
[30] Fix | Delete
[31] Fix | Delete
#ifdef __WCHAR_MAX__
[32] Fix | Delete
# define __WCHAR_MAX __WCHAR_MAX__
[33] Fix | Delete
#elif L'\0' - 1 > 0
[34] Fix | Delete
# define __WCHAR_MAX (0xffffffffu + L'\0')
[35] Fix | Delete
#else
[36] Fix | Delete
# define __WCHAR_MAX (0x7fffffff + L'\0')
[37] Fix | Delete
#endif
[38] Fix | Delete
[39] Fix | Delete
#ifdef __WCHAR_MIN__
[40] Fix | Delete
# define __WCHAR_MIN __WCHAR_MIN__
[41] Fix | Delete
#elif L'\0' - 1 > 0
[42] Fix | Delete
# define __WCHAR_MIN (L'\0' + 0)
[43] Fix | Delete
#else
[44] Fix | Delete
# define __WCHAR_MIN (-__WCHAR_MAX - 1)
[45] Fix | Delete
#endif
[46] Fix | Delete
[47] Fix | Delete
#endif /* bits/wchar.h */
[48] Fix | Delete
[49] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function