X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=phpstr%2Fphpstr.h;h=c9ede0ab3b20b4597fa55d7db823c35ed0ba4167;hp=bd749d6f6ae50bae0d011f86ff0d3d909f665c12;hb=0ac32c9b8590e88a5f110cc8b3154001d5c0c089;hpb=79bfab50fb44032e89ce1a3bb0b0677a2612e7ff diff --git a/phpstr/phpstr.h b/phpstr/phpstr.h index bd749d6..c9ede0a 100644 --- a/phpstr/phpstr.h +++ b/phpstr/phpstr.h @@ -4,12 +4,18 @@ #ifndef _PHPSTR_H_ #define _PHPSTR_H_ +#include "php.h" + #ifdef PHP_WIN32 # define PHPSTR_API __declspec(dllexport) #else # define PHPSTR_API #endif +#define PHPSTR(p) ((phpstr *) (p)) +#define PHPSTR_VAL(p) (PHPSTR(p))->data; +#define PHPSTR_LEN(p) (PHPSTR(p))->used; + #define FREE_PHPSTR_PTR(STR) efree(STR) #define FREE_PHPSTR_VAL(STR) phpstr_dtor(STR) #define FREE_PHPSTR_ALL(STR) phpstr_free(STR) @@ -64,7 +70,7 @@ PHPSTR_API phpstr *phpstr_init_ex(phpstr *buf, size_t chunk_size, zend_bool pre_ #define phpstr_from_zval(z) phpstr_from_string(Z_STRVAL(z), Z_STRLEN(z)) #define phpstr_from_zval_ex(b, z) phpstr_from_string_ex(b, Z_STRVAL(z), Z_STRLEN(z)) #define phpstr_from_string(s, l) phpstr_from_string_ex(NULL, (s), (l)) -PHPSTR_API phpstr *phpstr_from_string_ex(phpstr *buf, char *string, size_t length); +PHPSTR_API phpstr *phpstr_from_string_ex(phpstr *buf, const char *string, size_t length); /* usually only called from within the internal functions */ #define phpstr_resize(b, s) phpstr_resize_ex((b), (s), 0) @@ -98,7 +104,7 @@ PHPSTR_API phpstr *phpstr_right(const phpstr *buf, size_t length); PHPSTR_API phpstr *phpstr_sub(const phpstr *buf, size_t offset, size_t len); /* remove a substring */ -PHPSTR_API ssize_t phpstr_cut(phpstr *buf, size_t offset, size_t length); +PHPSTR_API size_t phpstr_cut(phpstr *buf, size_t offset, size_t length); /* get a complete phpstr duplicate */ PHPSTR_API phpstr *phpstr_dup(const phpstr *buf);