diff options
author | Nikita Popov <nikic@php.net> | 2016-12-18 20:04:38 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2017-01-01 21:28:20 +0100 |
commit | abb91ee9eac100c92960ec54b86c7792fc3c49cd (patch) | |
tree | 7bb4dc23eff94432f362769375717c52406d91d6 /ext/standard/php_smart_string_public.h | |
parent | 52da05c535152bf88ee52f4f00847113584ac791 (diff) | |
download | php-git-abb91ee9eac100c92960ec54b86c7792fc3c49cd.tar.gz |
Move smart_string to Zend
smart_str is already in Zend.
Diffstat (limited to 'ext/standard/php_smart_string_public.h')
-rw-r--r-- | ext/standard/php_smart_string_public.h | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/ext/standard/php_smart_string_public.h b/ext/standard/php_smart_string_public.h index dabc359676..2696d4eb0d 100644 --- a/ext/standard/php_smart_string_public.h +++ b/ext/standard/php_smart_string_public.h @@ -17,17 +17,6 @@ +----------------------------------------------------------------------+ */ -/* $Id$ */ +/* Header moved to Zend. This file is retained for BC. */ +#include "zend_smart_string_public.h" -#ifndef PHP_SMART_STRING_PUBLIC_H -#define PHP_SMART_STRING_PUBLIC_H - -#include <sys/types.h> - -typedef struct { - char *c; - size_t len; - size_t a; -} smart_string; - -#endif |