summaryrefslogtreecommitdiff
path: root/main/spprintf.c
Commit message (Collapse)AuthorAgeFilesLines
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* ws fixes + missing $Id$ tags, headers addedfoobar2003-02-191-1/+3
|
* PAD() macro didn't increase the buffer size resulting in loss of theIlia Alshanetsky2003-02-131-0/+1
| | | | | padding.
* - trims +100 lines of code from spprintf.cSascha Schumann2003-02-121-170/+57
| | | | | | | | | | | | | | | - 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.
* speed upMarcus Boerger2003-02-111-13/+30
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* increase allocation chunksMarcus Boerger2002-08-121-1/+1
|
* Export spprintf() so that extension can link properly on win32.Edin Kadribasic2002-08-121-1/+1
|
* -xbuf_resize does not need to have return valueMarcus Boerger2002-06-261-14/+8
|
* -freeing memory for pbuf=NULLMarcus Boerger2002-06-231-0/+2
| | | | | #should have been one commit but to many versions during tests
* -allow pbuf = NULL in case of NO MEMORY, tooMarcus Boerger2002-06-231-1/+2
|
* -allways terminate bufferMarcus Boerger2002-06-231-1/+4
| | | | | -allow pbuf parameter to be NULL for buffer size calculation
* Fixing win32 build.Frank M. Kromann2002-05-071-1/+2
|
* Adding PHPAPI needed for exif on Win32Frank M. Kromann2002-04-151-1/+1
|
* fix a warnig and an error (found by Sebastioan)Marcus Boerger2002-04-101-1/+1
|
* introducing spprintf and vspprintfMarcus Boerger2002-04-101-0/+653
#mail follows