diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-09 13:03:34 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-09 13:03:34 +0000 |
commit | 78d148b352731f8af910251e3700d3eaa9d59cf7 (patch) | |
tree | b5a744f0f90649b1e9f8fd4f782f9e2ae1b026fe /src/common/utils.h | |
parent | cc716ca00420c23bdb02831f8fc205d4588e1f75 (diff) | |
download | hercules-78d148b352731f8af910251e3700d3eaa9d59cf7.tar.gz hercules-78d148b352731f8af910251e3700d3eaa9d59cf7.tar.bz2 hercules-78d148b352731f8af910251e3700d3eaa9d59cf7.tar.xz hercules-78d148b352731f8af910251e3700d3eaa9d59cf7.zip |
* Changed db key from 'unsigned char*' to 'const char*'.
* Defined out the dump function in util.h/c.
Notes: saw some suspicious code in npc.c so kept the 'const char*' propagation to a minimum for now
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10193 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/utils.h')
-rw-r--r-- | src/common/utils.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/utils.h b/src/common/utils.h index 3fd0aeacc..3ee419c6f 100644 --- a/src/common/utils.h +++ b/src/common/utils.h @@ -6,7 +6,11 @@ #include <stdarg.h> -void dump(unsigned char *buffer, int num); +// Function that dumps the hex of the first num bytes of the buffer to the screen +//#define UTIL_DUMP +#ifdef UTIL_DUMP +void dump(const unsigned char* buffer, int num); +#endif struct StringBuf { char *buf_; |