History log of /PHP-5.6/main/spprintf.c (Results 51 – 70 of 70)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-4.3.4RC2, RELEASE_1_3b3, BEFORE_HANDLERS_RESHUFFLE, RELEASE_1_3b2, php-4.3.4RC1
# 7356a9b3 29-Sep-2003 Ilia Alshanetsky

Fixed Bug #25665 (var_dump() hangs on Nan and INF).


Revision tags: RELEASE_0_7
# 9f329adb 14-Sep-2003 Marcus Boerger

Add length modifier L


# 9b98e42f 14-Sep-2003 Marcus Boerger

- Add length modifiers(ll, j, t, h, hh)
# Still missing formats (%a, %A)
# Still missing modifier (l) in (%lc, %ls)
# Still missing modifier (L) in (%La, %LA, %Le, %LE, %Lf, %LF, %Lg, %LG

- Add length modifiers(ll, j, t, h, hh)
# Still missing formats (%a, %A)
# Still missing modifier (l) in (%lc, %ls)
# Still missing modifier (L) in (%La, %LA, %Le, %LE, %Lf, %LF, %Lg, %LG)
# C99 requires any conversion to be able to produce at least 4095
# characters. Implementation only allows less then 512.
#
# Only inside ext/mbstring etc. we could use %lc and %ls. And none of the
# rest should affect us until we stay with double and avoid long double.

show more ...


# af574b96 13-Sep-2003 Marcus Boerger

- Fix %p to prepend '0x' as suggested by C99.
- Add 'z' prefix.
# Now you can use '%zd' in [v]spprintf() and everything that utilizes it
# like error messages BUT you still cannot rely on

- Fix %p to prepend '0x' as suggested by C99.
- Add 'z' prefix.
# Now you can use '%zd' in [v]spprintf() and everything that utilizes it
# like error messages BUT you still cannot rely on it in [v]s[n]printf()
# calls.

show more ...


Revision tags: php-4.3.3, php-4.3.3RC4, RELEASE_0_5_3, php-4.3.3RC3, RELEASE_0_5_2, RELEASE_1_2b5, BEFORE_ARG_INFO, php-4.3.3RC2, php-5.0.0b1, php-4.3.3RC1
# f68c7ff2 10-Jun-2003 James Cox

updating license information in the headers.


Revision tags: BEFORE_FD_REAPPLY, php-4.3.2, php-4.3.2RC4, BEFORE_FD_REVERT, php-4.3.2RC3, RELEASE_0_9b, SPL_ALPHA, php-4.3.2RC2, RELEASE_0_6, RELEASE_0_5, init, php-4.3.2RC1
# 8e3f23e3 19-Feb-2003 foobar

ws fixes + missing $Id$ tags, headers added


Revision tags: php-4.3.1
# 586672fd 13-Feb-2003 Ilia Alshanetsky

PAD() macro didn't increase the buffer size resulting in loss of the
padding.


# 0cb1ff3b 12-Feb-2003 Sascha Schumann

- trims +100 lines of code from spprintf.c
- introduces an overflow detection in STR_TO_DEC
- eliminates dead code (e.g. assert(foo); if (foo) {..})
- removes unused macros fr

- trims +100 lines of code from spprintf.c
- introduces an overflow detection in STR_TO_DEC
- eliminates dead code (e.g. assert(foo); if (foo) {..})
- removes unused macros from the original code
- simplifies code (e.g. cc was completely dropped)
- improves run-time performance

The max_len feature is never used in our code base.
Nevertheless, cpu cycles were spent on each string
operation to check the current length against max_len which
is quite inefficient. Thus, I've moved the check to
vspprintf where it is applied only once per call.

show more ...


# e92f8f64 11-Feb-2003 Marcus Boerger

speed up


Revision tags: PHP_5_0_dev_before_13561_fix, PHP_4_3_before_13561_fix
# 2c5d4b8c 31-Dec-2002 Sebastian Bergmann

Bump year.


Revision tags: php-4.3.0, php-4.3.0RC4, RELEASE_1_0b3, php-4.3.0RC3, php-4.3.0RC2, RELEASE_1_0b2, BEFORE_RENAMING, php-4.3.0RC1, php-4.3.0pre2, RELEASE_1_0b1, php-4.3.0pre1, MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003, RELEASE_0_91, php-4.3.0dev_zend2_alpha3, php-4.2.3, php-4.2.3RC2, php-4.2.3RC1
# 11611d07 12-Aug-2002 Marcus Boerger

increase allocation chunks


# 553b7d27 12-Aug-2002 Edin Kadribasic

Export spprintf() so that extension can link properly on win32.


Revision tags: dev, php-4.2.2, INITIAL_IMPORT_SOURCEFORGE, xmlrpc_epi_0_51_merge_pt, php-4.3.0dev_zend2_alpha2
# d96924ff 26-Jun-2002 Marcus Boerger

-xbuf_resize does not need to have return value


# db39a2ef 23-Jun-2002 Marcus Boerger

-freeing memory for pbuf=NULL
#should have been one commit but to many versions during tests


# d3222bb5 23-Jun-2002 Marcus Boerger

-allow pbuf = NULL in case of NO MEMORY, too


# fd4d8d54 23-Jun-2002 Marcus Boerger

-allways terminate buffer
-allow pbuf parameter to be NULL for buffer size calculation


Revision tags: php-4.3.0dev, php5_5_0, RELEASE_0_90, php-4.3.0dev_zend2_alpha1, BEFORE_OBJECTS_STORE, SAFEGUARD_3_0_BETA1_RC1_26062002, RELEASE_0_11, NEW_UI_API_BP, RELEASE_0_10, RELEASE_0_4, php-4.3.0dev-ZendEngine2, php-4.3.0dev-ZendEngine2-Preview1, php-4.2.1
# 7c80fc1d 07-May-2002 Frank M. Kromann

Fixing win32 build.


Revision tags: php-4.2.1RC2, php-4.2.1RC1, php-4.2.0
# 643fb6dc 15-Apr-2002 Frank M. Kromann

Adding PHPAPI needed for exif on Win32


Revision tags: php-4.2.0RC4, php-4.2.0RC3
# 4e1a645a 10-Apr-2002 Marcus Boerger

fix a warnig and an error (found by Sebastioan)


# c664a0a2 10-Apr-2002 Marcus Boerger

introducing spprintf and vspprintf
#mail follows


123