Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1408 serge 1
/*
2
 * loc_incl.h - local include file for stdio library
3
 */
4
/* $Header$ */
5
 
6
#include	"stdio.h"
7
 
8
#define	io_testflag(p,x)	((p)->_flags & (x))
9
 
10
#include	
11
 
12
#ifdef _ANSI
13
int _doprnt(const char *format, va_list ap, FILE *stream);
14
int _doscan(FILE * stream, const char *format, va_list ap);
15
char *_i_compute(unsigned long val, int base, char *s, int nrdigits);
16
char *_f_print(va_list *ap, int flags, char *s, char c, int precision);
17
void __cleanup(void);
18
 
19
#ifndef	NOFLOAT
20
char *_ecvt(long double value, int ndigit, int *decpt, int *sign);
21
char *_fcvt(long double value, int ndigit, int *decpt, int *sign);
22
#endif	/* NOFLOAT */
23
#endif
24
 
25
#define	FL_LJUST	0x0001		/* left-justify field */
26
#define	FL_SIGN		0x0002		/* sign in signed conversions */
27
#define	FL_SPACE	0x0004		/* space in signed conversions */
28
#define	FL_ALT		0x0008		/* alternate form */
29
#define	FL_ZEROFILL	0x0010		/* fill with zero's */
30
#define	FL_SHORT	0x0020		/* optional h */
31
#define	FL_LONG		0x0040		/* optional l */
32
#define	FL_LONGDOUBLE	0x0080		/* optional L */
33
#define	FL_WIDTHSPEC	0x0100		/* field width is specified */
34
#define	FL_PRECSPEC	0x0200		/* precision is specified */
35
#define FL_SIGNEDCONV	0x0400		/* may contain a sign */
36
#define	FL_NOASSIGN	0x0800		/* do not assign (in scanf) */
37
#define	FL_NOMORE	0x1000		/* all flags collected */