(0000974)
landley
01-22-06 15:12
|
The newline thing we fixed in svn 13253, but your fix simplifies the code. The reason for the open coded ascii->int conversion is because this applet is more than usually likely to be statically linked, and thus saving the space taken up by the sscanf() library call is a bonus. Then again, I'm a really big fan of simplicity and this lets us save the loop, variable initialization, and the null terminating step...
The missing ! on strcmp() floors me: I tested this and it worked. (Really I did.) Did I check in the wrong version? |