Changeset 930
- Timestamp:
- Jul 1, 2003, 11:56:04 AM (18 years ago)
- Location:
- to-imperative/trunk/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
to-imperative/trunk/runtime/rf_char.hh
r835 r930 56 56 inline bool is_digit() const; 57 57 58 inline bool is_letter() const; 59 58 60 inline bool is_space() const; 59 61 -
to-imperative/trunk/runtime/rf_char.ih
r835 r930 29 29 return iswdigit(this->uint_data2); 30 30 }; 31 32 33 inline bool Char::is_letter() const { 34 return ( ( (this->uint_data2)>64 && (this->uint_data2)<91 ) 35 || ((this->uint_data2)>96 && (this->uint_data2) < 123)); 36 } 31 37 32 38 inline wchar_t Char::to_wchar_t() const {
Note: See TracChangeset
for help on using the changeset viewer.