diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2021-01-15 12:30:54 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2021-01-15 12:33:06 +0100 |
commit | 3e01f5afb1b52fe26a956190296de0192eedeec1 (patch) | |
tree | 77531ec93e3f3cef9891c77b5ca553eb8487f121 /sapi/phpdbg/phpdbg_prompt.h | |
parent | e2c8ab7c33ac5328485c43db5080c5bf4911ce38 (diff) | |
download | php-git-3e01f5afb1b52fe26a956190296de0192eedeec1.tar.gz |
Replace zend_bool uses with bool
We're starting to see a mix between uses of zend_bool and bool.
Replace all usages with the standard bool type everywhere.
Of course, zend_bool is retained as an alias.
Diffstat (limited to 'sapi/phpdbg/phpdbg_prompt.h')
-rw-r--r-- | sapi/phpdbg/phpdbg_prompt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sapi/phpdbg/phpdbg_prompt.h b/sapi/phpdbg/phpdbg_prompt.h index 2c2c3d2047..e465effb1c 100644 --- a/sapi/phpdbg/phpdbg_prompt.h +++ b/sapi/phpdbg/phpdbg_prompt.h @@ -21,9 +21,9 @@ /* {{{ */ void phpdbg_string_init(char *buffer); -void phpdbg_init(char *init_file, size_t init_file_len, zend_bool use_default); -void phpdbg_try_file_init(char *init_file, size_t init_file_len, zend_bool free_init); -int phpdbg_interactive(zend_bool allow_async_unsafe, char *input); +void phpdbg_init(char *init_file, size_t init_file_len, bool use_default); +void phpdbg_try_file_init(char *init_file, size_t init_file_len, bool free_init); +int phpdbg_interactive(bool allow_async_unsafe, char *input); int phpdbg_compile(void); int phpdbg_compile_stdin(zend_string *code); void phpdbg_force_interruption(void); |