| 265 | int compare(const ::String &inRHS) const; |
| 266 | #else |
| 267 | inline int compare(const ::String &inRHS) const |
| 268 | { |
| 269 | const char *r = inRHS.__s; |
| 270 | if (__s == r) return inRHS.length-length; |
| 271 | if (__s==0) return -1; |
| 272 | if (r==0) return 1; |
| 273 | |
| 274 | return strcmp(__s,r); |
| 275 | //return memcmp(__s,r,length); |
| 276 | } |
| 277 | #endif |
| 278 | |
| 279 |
no outgoing calls
no test coverage detected