return extended ascii as alpha
This commit is contained in:
parent
85142709fc
commit
22f4e8f82d
|
|
@ -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