00001 /* 00002 ** util.h 00003 */ 00004 #ifndef __UTIL_H__ 00005 #define __UTIL_H__ 00006 00007 #ifdef WIN32 00008 00009 #define snprintf _snprintf 00010 00011 #else 00012 00013 #include <sys/types.h> 00014 00015 typedef unsigned long long UINT64; 00016 00017 #endif 00018 00019 00020 00021 void *xmalloc(size_t byteSize); 00022 char *xstrdup(const char *str); 00023 void xshowmem(); 00024 void xfree( void * ); 00025 00026 #endif