search for: wcstomb

Displaying 20 results from an estimated 30 matches for "wcstomb".

Did you mean: wcrtomb
2010 Feb 10
2
wcstombs error when compiling package with Debian/Ubuntu
Dear Debian/Ubuntu experts, For the second time users of my BioC package reported problems when trying to compile it on Debian/Ubuntu. The error is always the same: "'wcstombs' was not declared in this scope", see: https://www.stat.math.ethz.ch/pipermail/bioconductor/2010-February/031739.html https://stat.ethz.ch/pipermail/bioconductor/2009-August/029192.html Since I have no problems compiling my package on OpenSUSE11.1, MacOS X and WinXP, I assume that mayb...
2020 Jun 09
2
valgrind false positive on R startup?
...t info ==9565== Command: /home/tdhock/lib/R/bin/exec/R --vanilla -e extSoftVersion() ==9565== ==9565== Conditional jump or move depends on uninitialised value(s) ==9565== at 0x55AB9E0: __wcsnlen_sse4_1 (strlen.S:147) ==9565== by 0x5598EC1: wcsrtombs (wcsrtombs.c:104) ==9565== by 0x551EB20: wcstombs (wcstombs.c:34) ==9565== by 0x50BAA07: wcstombs (stdlib.h:154) ==9565== by 0x50BAA07: tre_parse_bracket_items (tre-parse.c:336) ==9565== by 0x50BAA07: tre_parse_bracket (tre-parse.c:453) ==9565== by 0x50BAA07: tre_parse (tre-parse.c:1380) ==9565== by 0x50B2498: tre_compile (tre-comp...
2005 Aug 26
1
wchar and wstring.
...gs from C++ std::strings), I would do something like this to construct a string in R from the results of the parse. SET_VECTOR_ELT(vals, i++, mkString(header.GetHeader().c_str())); However, now the call header.GetHeader().c_str() returns a pointer to an array of wchar_t's. I was going to use wcstombs() to convert the wchar_t* to char*, but I wanted to see if there was a similar function in R for the mkString function which I had initially used which deals with wchar_ts as opposed to chars. Also, since I have no experience with the wctombs() function I wanted to ask if anyone knew if this will...
2020 Jun 10
0
valgrind false positive on R startup?
.../home/tdhock/lib/R/bin/exec/R --vanilla -e extSoftVersion() > ==9565== > ==9565== Conditional jump or move depends on uninitialised value(s) > ==9565== at 0x55AB9E0: __wcsnlen_sse4_1 (strlen.S:147) > ==9565== by 0x5598EC1: wcsrtombs (wcsrtombs.c:104) > ==9565== by 0x551EB20: wcstombs (wcstombs.c:34) > ==9565== by 0x50BAA07: wcstombs (stdlib.h:154) > ==9565== by 0x50BAA07: tre_parse_bracket_items (tre-parse.c:336) > ==9565== by 0x50BAA07: tre_parse_bracket (tre-parse.c:453) > ==9565== by 0x50BAA07: tre_parse (tre-parse.c:1380) > ==9565== by 0x50B24...
2007 Sep 13
1
chartr better
...[j]]; + for(j = 0; j < nc; j++) + if (tbl = bsearch(&wc[j], xtable, xtable_cnt, sizeof(xtable_t), + (int(*)(const void *, const void *))xtable_key_comp)) + wc[j]=tbl->c_new; nb = wcstombs(NULL, wc, 0); cbuf = CallocCharBuf(nb); wcstombs(cbuf, wc, nb + 1); -- EI-JI Nakama <nakama at ki.rim.or.jp> "\u4e2d\u9593\u6804\u6cbb" <nakama at ki.rim.or.jp>
2010 Feb 22
2
Compiling R on Linux with SunStudio 12.1: "wide-character type" problems
...MAKE=dmake R install guide also indicates that: "The OS needs to have enough support for wide-character types: this is checked at configuration. Specifically, the C99 functionality of headers wchar.h and wctype.h, types wctans_t and mbstate_t and functions mbrtowc, mbstowcs, wcrtomb, wcscoll, wcstombs, wctrans, wctype, and iswctype." Configure stops with the following error message: checking iconv.h usability... yes checking iconv.h presence... yes checking for iconv.h... yes checking for iconv... in libiconv checking whether iconv accepts "UTF-8", "latin1" and "U...
2023 Nov 22
1
R-4.3 version list.files function could not work correctly in chinese
...s() on Windows stops > listing a directory due to an error. > > There is probably not more we can do unless there is a revised bug > report of the original problem. > >> fs::dir_fs() uses NtQueryDirectoryFile() and WideCharToMultiByte() >> instead of FindNextFileW() and wcstombs(), but maybe this shouldn't >> matter. In particular, both list.files() and fs::dir_fs() would fail >> given a file name that cannot be represented in UTF-8 (invalid UTF-16 >> surrogate pairs?) > Right, R only support file names that are valid strings, this assumption >...
2005 May 18
2
Networking functionality?
Is there (if not, can we get) the functionality to query for workstations in the local workgroup or domain? Zach
2010 Feb 23
1
Compiling R on Linux with SunStudio 12.1: "wide-character type" problems (rt)
...dicates that: "The OS needs to have enough > support > > for wide-character types: this is checked at configuration. Specifically, > > the C99 functionality of headers wchar.h and wctype.h, types wctans_t and > > mbstate_t and functions mbrtowc, mbstowcs, wcrtomb, wcscoll, wcstombs, > > wctrans, wctype, and iswctype." > > Configure stops with the following error message: > > > > configure:39534: result: no > > configure:39710: error: Support for MBCS locales is required.* > > > > I am not sure if this is a Linux issue or if it i...
2005 Jul 20
1
(PR#8017) build of REventLoop package crashes with 2.1 due
...slash(char *s); > < void R_fixbackslash(char *s); > < #endif > < #if defined(Win32) && defined(SUPPORT_UTF8) > < #define mbrtowc(a,b,c,d) Rmbrtowc(a,b) > < #define wcrtomb(a,b,c) Rwcrtomb(a,b) > < #define mbstowcs(a,b,c) Rmbstowcs(a,b,c) > < #define wcstombs(a,b,c) Rwcstombs(a,b,c) > < size_t Rmbrtowc(wchar_t *wc, const char *s); > < size_t Rwcrtomb(char *s, const wchar_t wc); > < size_t Rmbstowcs(wchar_t *wc, const char *s, size_t n); > < size_t Rwcstombs(char *s, const wchar_t *wc, size_t n); > < #endif > < > &...
2005 Jul 19
0
build of REventLoop package crashes with 2.1 due tosyntax error in Defn.h (PR#8017)
...f < #ifdef Win32 < void R_fixslash(char *s); < void R_fixbackslash(char *s); < #endif < #if defined(Win32) && defined(SUPPORT_UTF8) < #define mbrtowc(a,b,c,d) Rmbrtowc(a,b) < #define wcrtomb(a,b,c) Rwcrtomb(a,b) < #define mbstowcs(a,b,c) Rmbstowcs(a,b,c) < #define wcstombs(a,b,c) Rwcstombs(a,b,c) < size_t Rmbrtowc(wchar_t *wc, const char *s); < size_t Rwcrtomb(char *s, const wchar_t wc); < size_t Rmbstowcs(wchar_t *wc, const char *s, size_t n); < size_t Rwcstombs(char *s, const wchar_t *wc, size_t n); < #endif < < /* used in relop.c and sort.c *...
2009 Nov 13
0
Problem building R 2.10 release
..... yes checking whether wcrtomb exists and is declared... yes checking whether wcscoll exists and is declared... yes checking whether wcsftime exists and is declared... yes checking whether wcstod exists and is declared... yes checking whether mbstowcs exists and is declared... yes checking whether wcstombs exists and is declared... yes checking whether wctrans exists and is declared... no checking whether iswblank exists and is declared... no checking whether wctype exists and is declared... no checking whether iswctype exists and is declared... no configure: error: Support for MBCS locales is requi...
2016 Jun 24
0
Wine release 1.9.13
...ewport object creation. d3drm/tests: Modify all QI tests to compare vtables. Akihiro Sagawa (2): winegstreamer: Fix a crash in Gstreamer_Mp3_SetMediaType(). kernel32: Fix typo of i386 macro name in GetLargePageMinimum(). Alex Henrie (6): msvcr90: Add tests for mbstowcs and wcstombs with a negative count. ucrtbase: Implement _(un)lock_locales. ucrtbase: Implement _calloc_base. ucrtbase: Implement _malloc_base. ucrtbase: Implement _free_base. ucrtbase: Implement _realloc_base. Alexandre Julliard (36): user32: Add helper functions to get and...
2009 Mar 13
7
WINE Compile issue latest development release (1.1.16?)
checking for X... no configure: error: X development files not found. Wine will be built without X support, which probably isn't what you want. You will need to install development packages of Xlib/Xfree86 at the very least. Use the --without-x option if you really want this. Configure failed, aborting install. -_- i keep getting random things when i try to install wine this is the latest.
2017 Aug 20
0
Wine release 2.15
...svcr80.dll._ismbcl0 called in 32-bit code 43527 Magic Online (Magic The Gathering: Online) Crashes due to LOCALE_SNAN returning empty string ---------------------------------------------------------------- Changes since 2.14: Akihiro Sagawa (2): msvcrt/tests: Add tests for mbstowcs and wcstombs with empty strings. msvcrt: Fix mbstowcs with empty strings. Alex Henrie (3): include: Add SetDefaultDllDirectories. include: Add CryptProtectMemory and CryptUnprotectMemory. include: Add GetNamedPipeClientProcessId. Alistair Leslie-Hughes (1): ntdll/tests: Use stan...
2018 Jan 02
0
Wine release 2.0.4
...ations 43912 wine-2.0.3/programs/wineboot/wineboot.c:684]: (style) Suspicious condition 44085 winecfg: Use more secure HTTPS URL in about ---------------------------------------------------------------- Changes since 2.0.3: Akihiro Sagawa (5): msvcrt/tests: Add tests for mbstowcs and wcstombs with empty strings. msvcrt: Fix mbstowcs with empty strings. readme: Update Japanese translation. explorer: Use neutral language for the version resource. regsvr32: Use neutral language for the version resource. Alex Henrie (5): msvcrt: Note that __stdio_common funct...
2008 Sep 10
1
Xen-3.3 Etch amd64 compil error
...ttribute__'' before ''_mbstowcs_r'' /usr/src/xen-3.3.0/stubdom/newlib-1.16.0/newlib/libc/include/stdlib.h:96: erreur: expected ''='', '','', '';'', ''asm'' or ''__attribute__'' before ''wcstombs'' /usr/src/xen-3.3.0/stubdom/newlib-1.16.0/newlib/libc/include/stdlib.h:97: erreur: expected ''='', '','', '';'', ''asm'' or ''__attribute__'' before ''_wcstombs_r'' /usr/src/xen-3.3.0/stubdom...
2010 May 07
0
Wine release 1.1.44
...entation. msvcrt: Use wcstod_l/strtod_l in other functions that parses doubles. msvcrt: Fix debug message in scanf. msvcrt: Added strtok_s implementation. msvcrt: Added _mkgmtime implementation. msvcrt: Added _wcstoi64 and _wcstoui64 implementation. msvcrt: Added wcstombs_s implementation. urlmon: Fixed synchronous binding to file. msvcrt: Added _get_osplatform implementation. msvcrt: Added ___mb_cur_max_l_func implementation. msvcrt: Added _ui64toa_s implementation. msvcrt: Added _mbstrlen_l implementation. msvcrt: Added mbstowc...
2012 Dec 03
0
need help for R's installation
...o checking whether wcrtomb exists and is declared... no checking whether wcscoll exists and is declared... yes checking whether wcsftime exists and is declared... yes checking whether wcstod exists and is declared... yes checking whether mbstowcs exists and is declared... yes checking whether wcstombs exists and is declared... yes checking whether wctrans exists and is declared... no checking whether iswblank exists and is declared... yes checking whether wctype exists and is declared... yes checking whether iswctype exists and is declared... yes configure: error: Support for MBCS locales...
2006 Jun 22
2
Error - Compiling R on a Sun V40Z - R/R-2.2.1 (PR#9024)
....h presence... yes checking for wchar.h... yes checking wctype.h usability... yes checking wctype.h presence... yes checking for wctype.h... yes checking for mbrtowc... yes checking for mbstowcs... yes checking for wcrtomb... yes checking for wcscoll... yes checking for wcsftime... yes checking for wcstombs... yes checking for wcswidth... yes checking for wctrans... yes checking for wcwidth... yes checking whether wcwidth is declared... yes checking whether wcswidth is declared... yes checking for wctrans_t... yes checking iconv.h usability... yes checking iconv.h presence... yes checking for iconv.h...