The R Project SVN R

Rev

Rev 77884 | Rev 78036 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 77884 Rev 77916
Line 1364... Line 1364...
1364
int utf8clen(char c);
1364
int utf8clen(char c);
1365
int Rf_AdobeSymbol2ucs2(int n);
1365
int Rf_AdobeSymbol2ucs2(int n);
1366
double R_strtod5(const char *str, char **endptr, char dec,
1366
double R_strtod5(const char *str, char **endptr, char dec,
1367
		 Rboolean NA, int exact);
1367
		 Rboolean NA, int exact);
1368
 
1368
 
1369
typedef unsigned short ucs2_t;
1369
typedef unsigned short R_ucs2_t;
1370
size_t mbcsToUcs2(const char *in, ucs2_t *out, int nout, int enc);
1370
size_t mbcsToUcs2(const char *in, R_ucs2_t *out, int nout, int enc);
1371
/* size_t mbcsMblen(char *in);
1371
/* size_t mbcsMblen(char *in);
1372
size_t ucs2ToMbcs(ucs2_t *in, char *out);
1372
size_t ucs2ToMbcs(R_ucs2_t *in, char *out);
1373
size_t ucs2Mblen(ucs2_t *in); */
1373
size_t ucs2Mblen(R_ucs2_t *in); */
1374
size_t utf8toucs(wchar_t *wc, const char *s);
1374
size_t utf8toucs(wchar_t *wc, const char *s);
1375
size_t utf8towcs(wchar_t *wc, const char *s, size_t n);
1375
size_t utf8towcs(wchar_t *wc, const char *s, size_t n);
1376
size_t ucstomb(char *s, const unsigned int wc);
1376
size_t ucstomb(char *s, const unsigned int wc);
1377
size_t ucstoutf8(char *s, const unsigned int wc);
1377
size_t ucstoutf8(char *s, const unsigned int wc);
1378
size_t mbtoucs(unsigned int *wc, const char *s, size_t n);
1378
size_t mbtoucs(unsigned int *wc, const char *s, size_t n);