asprintf.h 322 B

1234567891011121314151617
  1. #ifndef ASPRINTF_H_
  2. #define ASPRINTF_H_
  3. /* Avoid namespace collisions with BSD/GNU asprintf. */
  4. #ifdef asprintf
  5. #undef asprintf
  6. #endif
  7. #define asprintf libcperciva_asprintf
  8. /**
  9. * asprintf(ret, format, ...):
  10. * Do asprintf(3) like GNU and BSD do.
  11. */
  12. int asprintf(char **, const char *, ...);
  13. #endif /* !ASPRINTF_H_ */