mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-31 11:30:56 +08:00
35f31b6a98
* configure.in: Add configuration test for long double equals dbl and set flag _LDBL_EQ_DBL if true. * configure: Regenerated. * newlib.hin: Add _LDBL_EQ_DBL flag. * libc/include/math.h: Use _LDBL_EQ_DBL flag instead of _HAVE_LDBL_MATH. * libc/include/stdlib.h: Use _LDBL_EQ_DBL flag instead of _HAVE_LDBL_STDLIB. * libc/common/local.h: Remove _LDBL_EQ_DBL flag setting. * libc/stdlib/local.h: Ditto.
67 lines
2.5 KiB
C
67 lines
2.5 KiB
C
/* Misc. local definitions for libc/stdlib */
|
|
|
|
#ifndef _LOCAL_H_
|
|
#define _LOCAL_H_
|
|
|
|
char * _EXFUN(_gcvt,(struct _reent *, double , int , char *, char, int));
|
|
|
|
char *__locale_charset ();
|
|
|
|
#ifndef __mbstate_t_defined
|
|
#include <wchar.h>
|
|
#endif
|
|
|
|
extern int (*__wctomb) (struct _reent *, char *, wchar_t, const char *,
|
|
mbstate_t *);
|
|
int __ascii_wctomb (struct _reent *, char *, wchar_t, const char *,
|
|
mbstate_t *);
|
|
#ifdef _MB_CAPABLE
|
|
int __utf8_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
|
int __sjis_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
|
int __eucjp_wctomb (struct _reent *, char *, wchar_t, const char *,
|
|
mbstate_t *);
|
|
int __jis_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
|
int __iso_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
|
int __cp_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
|
#ifdef __CYGWIN__
|
|
int __gbk_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
|
int __kr_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
|
int __big5_wctomb (struct _reent *, char *, wchar_t, const char *, mbstate_t *);
|
|
#endif
|
|
#endif
|
|
|
|
extern int (*__mbtowc) (struct _reent *, wchar_t *, const char *, size_t,
|
|
const char *, mbstate_t *);
|
|
int __ascii_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
|
const char *, mbstate_t *);
|
|
#ifdef _MB_CAPABLE
|
|
int __utf8_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
|
const char *, mbstate_t *);
|
|
int __sjis_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
|
const char *, mbstate_t *);
|
|
int __eucjp_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
|
const char *, mbstate_t *);
|
|
int __jis_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
|
const char *, mbstate_t *);
|
|
int __iso_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
|
const char *, mbstate_t *);
|
|
int __cp_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
|
const char *, mbstate_t *);
|
|
#ifdef __CYGWIN__
|
|
int __gbk_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
|
const char *, mbstate_t *);
|
|
int __kr_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
|
const char *, mbstate_t *);
|
|
int __big5_mbtowc (struct _reent *, wchar_t *, const char *, size_t,
|
|
const char *, mbstate_t *);
|
|
#endif
|
|
#endif
|
|
|
|
extern wchar_t __iso_8859_conv[14][0x60];
|
|
int __iso_8859_index (const char *);
|
|
|
|
extern wchar_t __cp_conv[12][0x80];
|
|
int __cp_index (const char *);
|
|
|
|
#endif
|