Changeset 622 in dev for trunk/ab5.0/jenga/src/common/String.cpp
- Timestamp:
- May 21, 2008, 1:16:21 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/jenga/src/common/String.cpp
r607 r622 55 55 return wstr; 56 56 } 57 58 bool Jenga::Common::IsIdentifierTopChar( char c ) 59 { 60 return ( isalpha( c ) || c == '_' ); 61 } 62 63 bool Jenga::Common::IsIdentifierChar( char c ) 64 { 65 return ( IsIdentifierTopChar( c ) || isdigit( c ) ); 66 }
Note:
See TracChangeset
for help on using the changeset viewer.