5#ifndef NB_INTERNAL_PRINTF
6#define NB_INTERNAL_PRINTF
19void putatchar(
void *data,
char c);
30typedef int(PutCharsFunction)(
void *data,
const char *chars,
int len);
32int TheFloatPrintf(
char f, PutCharsFunction *pf,
void *data,
double d, pfstate &pfs);
34int NB_internal_iprintf(PutCharsFunction *pf,
void *data,
const char *format, va_list arg);
36#define NB_PRINTF_EXTEND (1)
37#define PRINTF_FLAG_DONE (0x0001)
38#define PRINTF_FLAG_LEFT (0x0002)
39#define PRINTF_FLAG_PLUSSIGN (0x0004)
40#define PRINTF_FLAG_BLANKSIGN (0x0008)
41#define PRINTF_FLAG_LEADZERO (0x0010)
42#define PRINTF_FLAG_SPECIAL (0x0020)
43#define PRINTF_FLAG_LOWERHEX (0x0040)
44#define PRINTF_FLAG_SAWDOT (0x0080)
45#define PRINTF_FLAG_SAWWID (0x0100)
46#define PRINTF_FLAG_FIRST_L (0x0200)
47#define PRINTF_FLAG_LONG_LONG (0x0400)
48#define PRINTF_FLAG_FIRST_H (0x0800)
49#define PRINTF_FLAG_HALF_HALF (0x1000)
50#define PRINTF_FLAG_WAS_NEG (0x2000)
51#define PRINTF_FLAG_ZERO_PREC (0x4000)
53int decimallen(uint32_t dw);
54bool prespace(
int width, uint32_t flags,
int len, PutCharsFunction *pf,
void *data,
int &nsent);
55bool postspace(
int width, uint32_t flags,
int len, PutCharsFunction *pf,
void *data,
int &nsent);
56bool leadzero(
int width, uint32_t flags,
int len, PutCharsFunction *pf,
void *data,
int &nsent);