mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-17 20:52:37 +01:00
Implemented stdout, stderr, debug writers.
This commit is contained in:
@@ -27,7 +27,7 @@ namespace bx
|
||||
|
||||
inline bool isInRange(char _ch, char _from, char _to)
|
||||
{
|
||||
return unsigned(_ch - _from) < unsigned(_to-_from);
|
||||
return unsigned(_ch - _from) <= unsigned(_to-_from);
|
||||
}
|
||||
|
||||
bool isUpper(char _ch)
|
||||
|
||||
Reference in New Issue
Block a user