printf.h 656 B

123456789101112131415161718192021222324
  1. #ifndef _PRINTF_H
  2. #include <stdio-common/printf.h>
  3. # ifndef _ISOMAC
  4. #include <bits/types/locale_t.h>
  5. /* Now define the internal interfaces. */
  6. extern int __printf_fphex (FILE *, const struct printf_info *,
  7. const void *const *) attribute_hidden;
  8. extern int __printf_fp (FILE *, const struct printf_info *,
  9. const void *const *);
  10. libc_hidden_proto (__printf_fp)
  11. extern int __printf_fp_l (FILE *, locale_t, const struct printf_info *,
  12. const void *const *);
  13. libc_hidden_proto (__printf_fp_l)
  14. extern unsigned int __guess_grouping (unsigned int intdig_max,
  15. const char *grouping)
  16. attribute_hidden;
  17. # endif /* !_ISOMAC */
  18. #endif