Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | |||||
* | trailing whitespace removal | Stanislav Malyshev | 2015-01-10 | 1 | -1/+1 |
| | |||||
* | Make number printing functions less generic | Nikita Popov | 2014-09-19 | 1 | -21/+3 |
| | | | | | | | | | | | | | | | | | Now that zend_ulong is 64bit on 64bit platforms, it should be sufficient to always use it, rather than supporting multiple types. API changes: * _zend_print_unsigned_to_buf and _zend_print_signed_to_buf no longer exist. * smart_str(ing)_print_long and smart_str(ing)_print_unsigned no longer exist. * Instead of all these, zend_print_ulong_to_buf and zend_print_long_to_buf should be used. * smart_str_append_generic_ex no longer exists. * smart_str(ing)_append_off_t(_ex) no longer exists, use smart_str(ing)_append_long(_ex) instead. | ||||
* | s/PHP 5/PHP 7/ | Johannes Schlüter | 2014-09-19 | 1 | -1/+1 |
| | |||||
* | fix types | Anatol Belski | 2014-09-15 | 1 | -5/+5 |
| | |||||
* | master renames phase 1 | Anatol Belski | 2014-08-25 | 1 | -2/+2 |
| | |||||
* | yet more fixes to zpp | Anatol Belski | 2014-08-20 | 1 | -2/+2 |
| | |||||
* | Optimize int to string conversion | Nikita Popov | 2014-05-23 | 1 | -37/+5 |
| | | | | | | | | Probably platform depedentant, but for me snprintf is terribly slow. The code for the long printing is taken from the smart string API. | ||||
* | Added smart_string to avoid string duplicated | Xinchen Hui | 2014-05-10 | 1 | -0/+196 |
for now, if we want result a char * use smart_string, if zend_string use smart_str |