![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum 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 |
| VietPad 2.0 (.NET implementation branch) | iBot | Software Releases - RSS News | 0 | 04-04-2008 09:00 AM |
| Piping and redirection implementation | mobile01 | High Level Programming | 7 | 12-20-2006 07:52 PM |
| need help with my implementation of cat in bash | sanchopansa | Shell Programming and Scripting | 4 | 10-18-2006 03:28 AM |
| Socket implementation differences | charlcy | HP-UX | 3 | 05-07-2005 02:54 PM |
| Shell Implementation | clickonline1 | UNIX for Dummies Questions & Answers | 3 | 10-02-2001 01:52 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
isascii & isextendedascii implementation
I know that there exists a function that says whether a particular character is ascii or not (i.e, isascii), is there any similar function that can say whether a character is an extended ascii. If possible can i have the internal implementaation of both.
Thanks in advance. |
| Forum Sponsor | ||
|
|
|
||||
|
The google search for isextendedascii turned up only three links. All of them seem to be for java... check it out
|
|
|||
|
Define 'extended ascii'. Do you mean multibyte characters in UTF8 or something like that?
The definition of isascii is simple: Code:
// Valid ASCII characters are 0-127
int isascii(int char)
{
return((char <= 127) && (char >= 0));
}
|
|||
| Google The UNIX and Linux Forums |