From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Rupert Wood" To: "'Kirwan, Brian'" Cc: Subject: RE: Missing basic wide char/wide string handling functions Date: Thu, 29 Nov 2001 02:35:00 -0000 Message-ID: <616BE6A276E3714788D2AC35C40CD18D03A99D@whale.softwire.co.uk> References: <577D56F824BAD411A1230008C728534AC5880F@dublin.accuris.ie> X-SW-Source: 2001-11/msg00290.html Message-ID: <20011129023500.nykYAE65aIgx4ugqL9gxgPcNbeK_jcLA_7rvbsdHIUA@z> Brian Kirwan wrote: > I'm building an application that needs to handle unicode strings and > therefore need wide char/string handling functions. In gcc, I CAN > find the corresponding CONVERSION functions (e.g., mbstowcs, > wcstombs, etc.) but I CANNOT find the BASIC wide string handling > functions, i.e., wcout, wstrcat, etc. (nor wprintf, etc in the C > library). GCC makes a few POSIX-like fixes to the system header files, but the set of functions you have really depends on the C library you're using and not on the compiler. That said, it sounds like you're using a Sun box. Certainly Solaris 2.8's system C library has wprintf in wchar.h (try 'man wprintf') but I'm not sure how many Solaris versions back that goes. Hope that helps, Rup.