Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| SHA1 Hash: | 1115f5dae5c903e8ca81af97146ab949d56eb8fd |
|---|---|
| Date: | 2008-12-26 12:28:39 |
| User: | stephan |
| Comment: | corrected header foo-foo |
Tags And Properties
- branch=trunk inherited from [f1bea87b3b]
- sym-trunk inherited from [f1bea87b3b]
Changes
Changes to whprintf.c
| Old (6f9af523c5dde2ed) | New (37c3a0fbd15eb4ee) | |||
|---|---|---|---|---|
| 1 | /************************************************************************ | 1 | /************************************************************************ | |
| 2 | The printf-like implementation in this file is based on the one found | 2 | The printf-like implementation in this file is based on the one found | |
| 3 | in the sqlite3 distribution is in the Public Domain. | 3 | in the sqlite3 distribution is in the Public Domain. | |
| 4 | 4 | |||
| 5 | This copy was forked for use with the clob API in Feb 2008 by Stephan | 5 | This copy was forked for use with the clob API in Feb 2008 by Stephan | |
| 17 hidden lines | ||||
| 23 | #include <stdio.h> /* FILE */ | 23 | #include <stdio.h> /* FILE */ | |
| 24 | #include <string.h> /* strlen() */ | 24 | #include <string.h> /* strlen() */ | |
| 25 | #include <stdlib.h> /* free/malloc() */ | 25 | #include <stdlib.h> /* free/malloc() */ | |
| 26 | #include <ctype.h> | 26 | #include <ctype.h> | |
| 27 | 27 | |||
| 28 | #include "vappendf.h" | | | 28 | #include "whprintf.h" |
| 29 | typedef long double LONGDOUBLE_TYPE; | 29 | typedef long double LONGDOUBLE_TYPE; | |
| 30 | 30 | |||
| 31 | /* | 31 | /* | |
| 32 | If WHPRINTF_OMIT_FLOATING_POINT is defined to a true value, then | 32 | If WHPRINTF_OMIT_FLOATING_POINT is defined to a true value, then | |
| 33 | floating point conversions are disabled. | 33 | floating point conversions are disabled. | |
| 1326 hidden lines | ||||
| 1360 | va_start( vargs, fmt ); | 1360 | va_start( vargs, fmt ); | |
| 1361 | char * ret = whprintfv_str( fmt, vargs ); | 1361 | char * ret = whprintfv_str( fmt, vargs ); | |
| 1362 | va_end( vargs ); | 1362 | va_end( vargs ); | |
| 1363 | return ret; | 1363 | return ret; | |
| 1364 | } | 1364 | } | |