Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/iconv/ces/table-pcs.c')
-rw-r--r--newlib/libc/iconv/ces/table-pcs.c24
1 files changed, 8 insertions, 16 deletions
diff --git a/newlib/libc/iconv/ces/table-pcs.c b/newlib/libc/iconv/ces/table-pcs.c
index 77b820bae..45cfe6267 100644
--- a/newlib/libc/iconv/ces/table-pcs.c
+++ b/newlib/libc/iconv/ces/table-pcs.c
@@ -40,8 +40,7 @@
#if defined (ICONV_FROM_UCS_CES_TABLE_PCS)
static size_t
-_DEFUN(table_pcs_convert_from_ucs, (data, in, outbuf, outbytesleft),
- void *data,
+table_pcs_convert_from_ucs (void *data,
ucs4_t in,
unsigned char **outbuf,
size_t *outbytesleft)
@@ -65,24 +64,21 @@ _DEFUN(table_pcs_convert_from_ucs, (data, in, outbuf, outbytesleft),
}
static void *
-_DEFUN(table_pcs_from_ucs_init, (rptr, encoding),
- struct _reent *rptr,
+table_pcs_from_ucs_init (struct _reent *rptr,
const char *encoding)
{
return _iconv_from_ucs_ces_handlers_table.init (rptr, encoding);
}
static size_t
-_DEFUN(table_pcs_from_ucs_close, (rptr, data),
- struct _reent *rptr,
+table_pcs_from_ucs_close (struct _reent *rptr,
void *data)
{
return _iconv_from_ucs_ces_handlers_table.close (rptr, data);
}
static int
-_DEFUN(table_pcs_from_ucs_get_mb_cur_max, (data),
- void *data)
+table_pcs_from_ucs_get_mb_cur_max (void *data)
{
return _iconv_from_ucs_ces_handlers_table.get_mb_cur_max (data);
}
@@ -91,8 +87,7 @@ _DEFUN(table_pcs_from_ucs_get_mb_cur_max, (data),
#if defined (ICONV_TO_UCS_CES_TABLE_PCS)
static ucs4_t
-_DEFUN(table_pcs_convert_to_ucs, (data, inbuf, inbytesleft),
- void *data,
+table_pcs_convert_to_ucs (void *data,
const unsigned char **inbuf,
size_t *inbytesleft)
{
@@ -113,24 +108,21 @@ _DEFUN(table_pcs_convert_to_ucs, (data, inbuf, inbytesleft),
}
static void *
-_DEFUN(table_pcs_to_ucs_init, (rptr, encoding),
- struct _reent *rptr,
+table_pcs_to_ucs_init (struct _reent *rptr,
const char *encoding)
{
return _iconv_to_ucs_ces_handlers_table.init (rptr, encoding);
}
static size_t
-_DEFUN(table_pcs_to_ucs_close, (rptr, data),
- struct _reent *rptr,
+table_pcs_to_ucs_close (struct _reent *rptr,
void *data)
{
return _iconv_to_ucs_ces_handlers_table.close (rptr, data);
}
static int
-_DEFUN(table_pcs_to_ucs_get_mb_cur_max, (data),
- void *data)
+table_pcs_to_ucs_get_mb_cur_max (void *data)
{
return _iconv_to_ucs_ces_handlers_table.get_mb_cur_max (data);
}