return extended ascii as alpha
This commit is contained in:
parent
c0b9ef41b1
commit
8457c6dcf6
|
|
@ -142,7 +142,7 @@ alfa(char c)
|
|||
return
|
||||
((c >= 'a') && (c <= 'z')) ||
|
||||
((c >= 'A') && (c <= 'Z')) ||
|
||||
c == '_' || c == '[' || c == ']';
|
||||
c == '_' || c == '[' || c == ']' || ((c) & 0200);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue