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:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-12-04 07:52:13 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-17 20:47:27 +0300
commit77f16db546d9c214f639d1ea84c58d99f9e4d282 (patch)
tree38362015be02e1450ef8c2e83d66749e587f5455 /newlib/libc/iconv
parent9087163804df8af6dc2ec1f675a2341c25f7795f (diff)
ansification: remove _EXFNPTR, _EXPARM
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/iconv')
-rw-r--r--newlib/libc/iconv/lib/conv.h28
-rw-r--r--newlib/libc/iconv/lib/ucsconv.h48
2 files changed, 38 insertions, 38 deletions
diff --git a/newlib/libc/iconv/lib/conv.h b/newlib/libc/iconv/lib/conv.h
index 89da4b224..658ab9152 100644
--- a/newlib/libc/iconv/lib/conv.h
+++ b/newlib/libc/iconv/lib/conv.h
@@ -63,9 +63,9 @@ typedef struct
* Pointer to conversion-specific data if success. In case of error
* returns NULL and sets current thread's/process's errno.
*/
- void *_EXFNPTR(open, (struct _reent *rptr,
+ void *(*open) (struct _reent *rptr,
const char *to,
- const char *from));
+ const char *from);
/*
* close - close conversion.
@@ -81,8 +81,8 @@ typedef struct
* When successful, returns (size_t)0. In case of error, sets current
* thread's/process's errno and returns (size_t)-1 (same as iconv_open()).
*/
- size_t _EXFNPTR(close, (struct _reent *rptr,
- void *data));
+ size_t (*close) (struct _reent *rptr,
+ void *data);
/* convert - perform encoding conversion.
*
@@ -114,13 +114,13 @@ typedef struct
* Reversible conversions are not counted. In case of error, sets current
* thread's/process's errno and returns (size_t)-1 (same as iconv()).
*/
- size_t _EXFNPTR(convert, (struct _reent *rptr,
+ size_t (*convert) (struct _reent *rptr,
void *data,
const unsigned char **inbuf,
size_t *inbytesleft,
unsigned char **outbuf,
size_t *outbytesleft,
- int flags));
+ int flags);
/*
* get_state - get current shift state.
@@ -135,9 +135,9 @@ typedef struct
* If 'direction' is 0, "from" encoding is tested, else
* "to" encoding is tested.
*/
- void _EXFNPTR(get_state, (void *data,
+ void (*get_state) (void *data,
mbstate_t *state,
- int direction));
+ int direction);
/*
* set_state - set shift state.
@@ -154,9 +154,9 @@ typedef struct
* "to" encoding is set.
* Returns 0 if '*state' object has right format, -1 else.
*/
- int _EXFNPTR(set_state, (void *data,
+ int (*set_state) (void *data,
mbstate_t *state,
- int direction));
+ int direction);
/*
* get_mb_cur_max - get maximum character length in bytes.
@@ -170,8 +170,8 @@ typedef struct
* If 'direction' is 0, "from" encoding is tested, else
* "to" encoding is tested.
*/
- int _EXFNPTR(get_mb_cur_max, (void *data,
- int direction));
+ int (*get_mb_cur_max) (void *data,
+ int direction);
/*
* is_stateful - is encoding stateful or stateless.
@@ -185,8 +185,8 @@ typedef struct
* If 'direction' is 0, "from" encoding is tested, else
* "to" encoding is tested.
*/
- int _EXFNPTR(is_stateful, (void *data,
- int direction));
+ int (*is_stateful) (void *data,
+ int direction);
} iconv_conversion_handlers_t;
diff --git a/newlib/libc/iconv/lib/ucsconv.h b/newlib/libc/iconv/lib/ucsconv.h
index 391daed35..2c3d8c647 100644
--- a/newlib/libc/iconv/lib/ucsconv.h
+++ b/newlib/libc/iconv/lib/ucsconv.h
@@ -68,8 +68,8 @@ typedef struct
* Returns CES-specific data pointer if success. In case of error returns
* NULL and sets current thread's/process's errno.
*/
- void *_EXFNPTR(init, (struct _reent *rptr,
- const char *encoding));
+ void *(*init) (struct _reent *rptr,
+ const char *encoding);
/*
* close - close CES converter.
@@ -84,8 +84,8 @@ typedef struct
* Returns (size_t)0 if success. In case of error returns (size_t)-1 and
* sets current thread's/process's errno.
*/
- size_t _EXFNPTR(close, (struct _reent *rptr,
- void *data));
+ size_t (*close) (struct _reent *rptr,
+ void *data);
/*
* get_mb_cur_max - get maximum character length in bytes.
@@ -96,7 +96,7 @@ typedef struct
* DESCRIPTION:
* Returns encoding's maximum character length.
*/
- int _EXFNPTR(get_mb_cur_max, (void *data));
+ int (*get_mb_cur_max) (void *data);
/*
* get_state - get current shift state.
@@ -108,8 +108,8 @@ typedef struct
* DESCRIPTION:
* Returns encoding's current shift sequence.
*/
- void _EXFNPTR(get_state, (void *data,
- mbstate_t *state));
+ void (*get_state) (void *data,
+ mbstate_t *state);
/*
* set_state - set shift state.
@@ -123,8 +123,8 @@ typedef struct
* object is zero-object - reset current shift state.
* Returns 0 if '*state' object has right format, -1 else.
*/
- int _EXFNPTR(set_state, (void *data,
- mbstate_t *state));
+ int (*set_state) (void *data,
+ mbstate_t *state);
/*
* is_stateful - is encoding stateful state.
@@ -135,7 +135,7 @@ typedef struct
* DESCRIPTION:
* Returns 0 if encoding is stateless, else returns 1.
*/
- int _EXFNPTR(is_stateful, (void *data));
+ int (*is_stateful) (void *data);
/*
* convert_to_ucs - convert character to UCS.
@@ -155,9 +155,9 @@ typedef struct
* returns ICONV_CES_INVALID_CHARACTER. If invalid or incomplete bytes
* sequence was met, returns ICONV_CES_BAD_SEQUENCE.
*/
- ucs4_t _EXFNPTR(convert_to_ucs, (void *data,
+ ucs4_t (*convert_to_ucs) (void *data,
const unsigned char **inbuf,
- size_t *inbytesleft));
+ size_t *inbytesleft);
} iconv_to_ucs_ces_handlers_t;
@@ -172,26 +172,26 @@ typedef struct
typedef struct
{
/* Same as in iconv_to_ucs_ces_handlers_t */
- void *_EXFNPTR(init, (struct _reent *rptr,
- const char *encoding));
+ void *(*init) (struct _reent *rptr,
+ const char *encoding);
/* Same as in iconv_to_ucs_ces_handlers_t */
- size_t _EXFNPTR(close, (struct _reent *rptr,
- void *data));
+ size_t (*close) (struct _reent *rptr,
+ void *data);
/* Same as in iconv_to_ucs_ces_handlers_t */
- int _EXFNPTR(get_mb_cur_max, (void *data));
+ int (*get_mb_cur_max) (void *data);
/* Same as in iconv_to_ucs_ces_handlers_t */
- void _EXFNPTR(get_state, (void *data,
- mbstate_t *state));
+ void (*get_state) (void *data,
+ mbstate_t *state);
/* Same as in iconv_to_ucs_ces_handlers_t */
- int _EXFNPTR(set_state, (void *data,
- mbstate_t *state));
+ int (*set_state) (void *data,
+ mbstate_t *state);
/* Same as in iconv_to_ucs_ces_handlers_t */
- int _EXFNPTR(is_stateful, (void *data));
+ int (*is_stateful) (void *data);
/*
* convert_from_ucs - convert UCS character to destination encoding.
@@ -215,10 +215,10 @@ typedef struct
* If there is no corresponding character in destination encoding, returns
* ICONV_CES_INVALID_CHARACTER.
*/
- size_t _EXFNPTR(convert_from_ucs, (void *data,
+ size_t (*convert_from_ucs) (void *data,
ucs4_t in,
unsigned char **outbuf,
- size_t *outbytesleft));
+ size_t *outbytesleft);
} iconv_from_ucs_ces_handlers_t;