Searched defs:snprintf (Results 1 - 5 of 5) sorted by relevance
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3ext.h | 128 char * (*snprintf)(int,char*,const char*,...); member in struct:sqlite3_api_routines 331 #define sqlite3_snprintf sqlite3_api->snprintf
|
| /PHP_TRUNK/ext/xmlrpc/libxmlrpc/ |
| H A D | xmlrpc_win32.h | 9 #ifndef snprintf 10 # define snprintf _snprintf macro
|
| /PHP_TRUNK/ext/zip/lib/ |
| H A D | zip_win32.h | 20 #ifndef snprintf 21 # define snprintf _snprintf macro
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_config.w32.h | 50 #define snprintf _snprintf macro
|
| /PHP_TRUNK/main/ |
| H A D | snprintf.h | 24 Comparing: sprintf, snprintf, slprintf, spprintf 32 snprintf knows the buffers size and will not write behind it. But you will 42 slprintf same as snprintf with the difference that it actually returns the 45 spprintf is the dynamical version of snprintf. It allocates the buffer in size 46 as needed and allows a maximum setting as snprintf (turn this feature 48 snprintf and offers possible memory leakes if you miss freeing the 60 sprintf(buffer, "test"); | snprintf(buffer, MAX, "test"); | spprintf(&buffer, MAX, "text"); 104 #ifdef snprintf 105 #undef snprintf macro 107 #define snprintf ap_php_snprint macro [all...] |
Completed in 5 milliseconds