13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
** drh@hwaci.com
** http://www.hwaci.com/drh/
**
*******************************************************************************
**
** An implementation of printf() with extra conversion fields.
*/
#include "config.h"
#include "printf.h"
/*
** Conversion types fall into various categories as defined by the
** following enumeration.
*/
|
>
>
>
>
>
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
** drh@hwaci.com
** http://www.hwaci.com/drh/
**
*******************************************************************************
**
** An implementation of printf() with extra conversion fields.
*/
/* prevent "fossil_strcmp" to be optimized using the assumption
* that its arguments cannot be NULL */
#undef fossil_strcmp
#include "config.h"
#include "printf.h"
/*
** Conversion types fall into various categories as defined by the
** following enumeration.
*/
|