Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include
File: iconv.h
/* Copyright (C) 1997-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
#ifndef _ICONV_H
[17] Fix | Delete
#define _ICONV_H 1
[18] Fix | Delete
[19] Fix | Delete
#include <features.h>
[20] Fix | Delete
#define __need_size_t
[21] Fix | Delete
#include <stddef.h>
[22] Fix | Delete
[23] Fix | Delete
[24] Fix | Delete
__BEGIN_DECLS
[25] Fix | Delete
[26] Fix | Delete
/* Identifier for conversion method from one codeset to another. */
[27] Fix | Delete
typedef void *iconv_t;
[28] Fix | Delete
[29] Fix | Delete
[30] Fix | Delete
/* Allocate descriptor for code conversion from codeset FROMCODE to
[31] Fix | Delete
codeset TOCODE.
[32] Fix | Delete
[33] Fix | Delete
This function is a possible cancellation point and therefore not
[34] Fix | Delete
marked with __THROW. */
[35] Fix | Delete
extern iconv_t iconv_open (const char *__tocode, const char *__fromcode);
[36] Fix | Delete
[37] Fix | Delete
/* Convert at most *INBYTESLEFT bytes from *INBUF according to the
[38] Fix | Delete
code conversion algorithm specified by CD and place up to
[39] Fix | Delete
*OUTBYTESLEFT bytes in buffer at *OUTBUF. */
[40] Fix | Delete
extern size_t iconv (iconv_t __cd, char **__restrict __inbuf,
[41] Fix | Delete
size_t *__restrict __inbytesleft,
[42] Fix | Delete
char **__restrict __outbuf,
[43] Fix | Delete
size_t *__restrict __outbytesleft);
[44] Fix | Delete
[45] Fix | Delete
/* Free resources allocated for descriptor CD for code conversion.
[46] Fix | Delete
[47] Fix | Delete
This function is a possible cancellation point and therefore not
[48] Fix | Delete
marked with __THROW. */
[49] Fix | Delete
extern int iconv_close (iconv_t __cd);
[50] Fix | Delete
[51] Fix | Delete
__END_DECLS
[52] Fix | Delete
[53] Fix | Delete
#endif /* iconv.h */
[54] Fix | Delete
[55] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function