1387c8713b
core (and split them up).
29 lines
1 KiB
C
29 lines
1 KiB
C
#ifndef DOPRNT_H
|
|
#define DOPRNT_H
|
|
|
|
#define FL_LJUST 0x0001 /* left-justify field */
|
|
#define FL_SIGN 0x0002 /* sign in signed conversions */
|
|
#define FL_SPACE 0x0004 /* space in signed conversions */
|
|
#define FL_ALT 0x0008 /* alternate form */
|
|
#define FL_ZEROFILL 0x0010 /* fill with zero's */
|
|
#define FL_SHORT 0x0020 /* optional h */
|
|
#define FL_LONG 0x0040 /* optional l */
|
|
#define FL_LONGDOUBLE 0x0080 /* optional L */
|
|
#define FL_WIDTHSPEC 0x0100 /* field width is specified */
|
|
#define FL_PRECSPEC 0x0200 /* precision is specified */
|
|
#define FL_SIGNEDCONV 0x0400 /* may contain a sign */
|
|
#define FL_NOASSIGN 0x0800 /* do not assign (in scanf) */
|
|
#define FL_NOMORE 0x1000 /* all flags collected */
|
|
|
|
extern int (*_doprnt_put)(int c);
|
|
|
|
extern int _doprnt(register const char* fmt, va_list ap);
|
|
extern char* _f_print(va_list* ap, int flags, char* s, char c, int precision);
|
|
|
|
#if ACKCONF_WANT_STDIO_FLOAT
|
|
char *_ecvt(long double value, int ndigit, int *decpt, int *sign);
|
|
char *_fcvt(long double value, int ndigit, int *decpt, int *sign);
|
|
#endif
|
|
|
|
#endif
|