diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-20 21:57:33 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-20 21:57:33 +0000 |
commit | 95acae21f2c3d1f76109f6d9c5a8121f1474a923 (patch) | |
tree | cdb6dc410692d5d299e91f81ca8f289c59725c4c /src/common/cbasetypes.h | |
parent | 131e693e935468ab8d247c9f4483851b51c25c28 (diff) | |
download | hercules-95acae21f2c3d1f76109f6d9c5a8121f1474a923.tar.gz hercules-95acae21f2c3d1f76109f6d9c5a8121f1474a923.tar.bz2 hercules-95acae21f2c3d1f76109f6d9c5a8121f1474a923.tar.xz hercules-95acae21f2c3d1f76109f6d9c5a8121f1474a923.zip |
- Added ntows() to properly handle that client port number deficiency
- Adjusted the packet_db array for a more consistent look
- Reorganized some entries in packet_db.txt
- Fixed a small scripts_custom.conf typo
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10296 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/cbasetypes.h')
-rw-r--r-- | src/common/cbasetypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h index c066c1ebd..ae6430a62 100644 --- a/src/common/cbasetypes.h +++ b/src/common/cbasetypes.h @@ -291,7 +291,7 @@ typedef char bool; ////////////////////////////////////////////////////////////////////////// // Has to be unsigned to avoid problems in some systems -// Problems arise when these functions expect an argument in the range [0,256[ and are feed a signed char. +// Problems arise when these functions expect an argument in the range [0,256[ and are fed a signed char. #include <ctype.h> #define ISALNUM(c) (isalnum((unsigned char)(c))) #define ISALPHA(c) (isalpha((unsigned char)(c))) |