diff options
author | Thies C. Arntzen <thies@php.net> | 1999-09-15 09:51:20 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 1999-09-15 09:51:20 +0000 |
commit | 328d08bd63f738323fbc0177616a4f8dbf6e3b84 (patch) | |
tree | 15094244bcc325096138d6e52d2b2eb22d698739 /main/php.h | |
parent | 1740e6ee4ef01c2130db756a17fe8d8665438231 (diff) | |
download | php-git-328d08bd63f738323fbc0177616a4f8dbf6e3b84.tar.gz |
HASH_OF is usable enough (i hate duplicating macros all over the place)
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/php.h b/main/php.h index 4f635a21e8..2207dbce8d 100644 --- a/main/php.h +++ b/main/php.h @@ -249,6 +249,7 @@ extern int ap_vsnprintf(char *, size_t, const char *, va_list); #define STR_FREE(ptr) if (ptr && ptr!=empty_string && ptr!=undefined_variable_string) { efree(ptr); } #define COPY_STRING(yy) (yy).value.str.val = (char *) estrndup((yy).value.str.val,(yy).value.str.len) #define STR_PRINT(str) ((str)?(str):"") +#define HASH_OF(p) ((p)->type==IS_ARRAY ? (p)->value.ht : (((p)->type==IS_OBJECT ? (p)->value.obj.properties : NULL))) #ifndef MAXPATHLEN #define MAXPATHLEN 256 /* Should be safe for any weird systems that do not define it */ |