[Sep 25 2007] - Rumble Added set/not set to extra descriptions menu in oedit so a builder can tell if they exist or not without having to enter the extra desc menu or stat the object. Replaced [TRIG] flag (showvnum enabled) with [T<vnum>] to make things easier to stat. [Sep 24 2007] - Rumble Added %is_pc% to return -1 for objects. (thanks Jamdog) Fixed do_gen_comm color bleed into last apostrophe in gossip/shout/grat/etc. Fixed bug where object keywords took precedence over door keywords. i.e. open door would try to open an object with keyword door. (thanks Trulight) [Sep 23 2007] - Rumble Fixed minlev checks in do_grab, do_wield, and do_wear. (thanks Trulight) Added trigedit variables(modifiable) Hunger, Thirst, and Drunk. [Sep 15 2007] - Rumble Fixed bug in unlimited drinks showing as empty. (thanks AaronGoulet)
26 lines
1.0 KiB
C
26 lines
1.0 KiB
C
/**************************************************************************
|
|
* File: zmalloc.h Part of tbaMUD *
|
|
* Usage: A simple memory allocation monitor, header. *
|
|
* *
|
|
* Version 1.1 Copyright 1996, 1998, 1999, 2000 Eric Murray ericm@lne.com *
|
|
**************************************************************************/
|
|
|
|
#ifndef ZMALLOC_H
|
|
#define ZMALLOC_H
|
|
|
|
unsigned char *zmalloc(int, char *, int);
|
|
unsigned char *zrealloc(unsigned char *, int, char *, int);
|
|
void zfree(unsigned char *, char *, int);
|
|
void zmalloc_init(void);
|
|
void zmalloc_check(void);
|
|
char *zstrdup(const char *, char *, int);
|
|
|
|
#define malloc(x) zmalloc((x),__FILE__,__LINE__)
|
|
#define calloc(n,x) zmalloc((n*x),__FILE__,__LINE__)
|
|
#define realloc(r,x) zrealloc((unsigned char *)(r),(x),__FILE__,__LINE__)
|
|
#define free(x) zfree((unsigned char *)(x),__FILE__,__LINE__)
|
|
#undef strdup
|
|
#define strdup(x) zstrdup((x), __FILE__, __LINE__)
|
|
|
|
#endif /* ZMALLOC_H */
|