X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Futils.h;h=bac112ed713d3e6cd7ffb2dd53f994550df35a25;hp=7d41b3148e5c3e011d9bcb1e27d9d95aca17e46c;hb=76780021d822779f839bbf85883292e15eb3f587;hpb=b06220f359c293311bab7d4c1a282cb5945716ed diff --git a/src/utils.h b/src/utils.h index 7d41b314..bac112ed 100644 --- a/src/utils.h +++ b/src/utils.h @@ -31,6 +31,32 @@ as that of the covered work. */ #ifndef UTILS_H #define UTILS_H +#ifdef USE_GNULIB_ALLOC + +/* Constant is using when we don`t know attempted size exactly */ +#define UNKNOWN_ATTEMPTED_SIZE -3 + +/* Macros that interface to malloc, but know about type sizes, and + cast the result to the appropriate type. The casts are not + necessary in standard C, but Wget performs them anyway for the sake + of pre-standard environments and possibly C++. */ + +#define xnew(type) (xmalloc (sizeof (type))) +#define xnew0(type) (xcalloc (1, sizeof (type))) +#define xnew_array(type, len) (xmalloc ((len) * sizeof (type))) +#define xnew0_array(type, len) (xcalloc ((len), sizeof (type))) + +#define alloca_array(type, size) ((type *) alloca ((size) * sizeof (type))) + +#define xfree free +/* Free P if it is non-NULL. C requires free() to behaves this way by + default, but Wget's code is historically careful not to pass NULL + to free. This allows us to assert p!=NULL in xfree to check + additional errors. (But we currently don't do that!) */ +#define xfree_null(p) if (!(p)) ; else xfree (p) + +#endif /* USE_GNULIB_ALLOC */ + struct hash_table; struct file_memory {