![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Equivalent of Substr in Unix | saurabhsinha23 | UNIX for Dummies Questions & Answers | 7 | 12-11-2007 03:40 PM |
| Unix equivalent of DOS set | xxavier | UNIX for Dummies Questions & Answers | 3 | 07-11-2007 05:14 AM |
| IsDBCSLeadByteEx equivalent for unix | anjan_kumar_k | UNIX for Advanced & Expert Users | 1 | 07-19-2006 06:05 AM |
| batch file equivalent for Unix | megastar | UNIX for Advanced & Expert Users | 1 | 10-12-2005 03:20 PM |
| unix equivalent for windows APIs.......................... | ani | High Level Programming | 2 | 10-29-2002 05:47 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
IsDBCSLeadByteEx equivalent for unix
I am using IsDBCSLeadByteEx for windows, i would like to know whether there is any equivalent function in unix(linux) platform.
|
| Forum Sponsor | ||
|
|
|
|||
|
There is none. locale is "codepage" and it works totally different from the way Windows maps keyboards, characters, and gylphs.
try man mbstowcs which creates a "normal" array from UTF-8 (unicode) character arrays. You will have to roll your own. |