projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
as the allocator is reset zero out the number of bytes allocated, this was just
[oota-llvm.git]
/
lib
/
Support
/
LocaleWindows.inc
1
namespace llvm {
2
namespace sys {
3
namespace locale {
4
5
int columnWidth(StringRef s) {
6
return s.size();
7
}
8
9
bool isPrint(int c) {
10
return ' ' <= c && c <= '~';
11
}
12
13
}
14
}
15
}