loc_incl.h 1.4 KB

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