View Single Post
  #8  
Old 07-10-2010, 04:23 PM
Loriel Loriel is offline
Somewhat rusty
Loriel's Avatar
Join Date: Mar 2001
Posts: 5,059
Loriel is a name known to allLoriel is a name known to allLoriel is a name known to allLoriel is a name known to all
Quote:
Originally Posted by Crow View Post
Hm. Why?
Mostly because people get confused by it. Also then you do not get tempted to write code like I do.

NPC Code:
int bytesCount = c >= 0xfc ? 5 :
c >= 0xf8 ? 4 :
c >= 0xf0 ? 3 :
c >= 0xe0 ? 2 :
c >= 0xc0 ? 1 : 0;

Reply With Quote