Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include
File: uchar.h
/* Copyright (C) 2011-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 C11 Standard: 7.28
[18] Fix | Delete
* Unicode utilities <uchar.h>
[19] Fix | Delete
*/
[20] Fix | Delete
[21] Fix | Delete
#ifndef _UCHAR_H
[22] Fix | Delete
#define _UCHAR_H 1
[23] Fix | Delete
[24] Fix | Delete
#include <features.h>
[25] Fix | Delete
[26] Fix | Delete
#define __need_size_t
[27] Fix | Delete
#include <stddef.h>
[28] Fix | Delete
[29] Fix | Delete
#include <bits/types.h>
[30] Fix | Delete
#include <bits/types/mbstate_t.h>
[31] Fix | Delete
[32] Fix | Delete
#ifndef __USE_ISOCXX11
[33] Fix | Delete
/* Define the 16-bit and 32-bit character types. */
[34] Fix | Delete
typedef __uint_least16_t char16_t;
[35] Fix | Delete
typedef __uint_least32_t char32_t;
[36] Fix | Delete
#endif
[37] Fix | Delete
[38] Fix | Delete
[39] Fix | Delete
__BEGIN_DECLS
[40] Fix | Delete
[41] Fix | Delete
/* Write char16_t representation of multibyte character pointed
[42] Fix | Delete
to by S to PC16. */
[43] Fix | Delete
extern size_t mbrtoc16 (char16_t *__restrict __pc16,
[44] Fix | Delete
const char *__restrict __s, size_t __n,
[45] Fix | Delete
mbstate_t *__restrict __p) __THROW;
[46] Fix | Delete
[47] Fix | Delete
/* Write multibyte representation of char16_t C16 to S. */
[48] Fix | Delete
extern size_t c16rtomb (char *__restrict __s, char16_t __c16,
[49] Fix | Delete
mbstate_t *__restrict __ps) __THROW;
[50] Fix | Delete
[51] Fix | Delete
[52] Fix | Delete
[53] Fix | Delete
/* Write char32_t representation of multibyte character pointed
[54] Fix | Delete
to by S to PC32. */
[55] Fix | Delete
extern size_t mbrtoc32 (char32_t *__restrict __pc32,
[56] Fix | Delete
const char *__restrict __s, size_t __n,
[57] Fix | Delete
mbstate_t *__restrict __p) __THROW;
[58] Fix | Delete
[59] Fix | Delete
/* Write multibyte representation of char32_t C32 to S. */
[60] Fix | Delete
extern size_t c32rtomb (char *__restrict __s, char32_t __c32,
[61] Fix | Delete
mbstate_t *__restrict __ps) __THROW;
[62] Fix | Delete
[63] Fix | Delete
__END_DECLS
[64] Fix | Delete
[65] Fix | Delete
#endif /* uchar.h */
[66] Fix | Delete
[67] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function