utils.h 394 B

12345678910111213
  1. /*
  2. * Internal header to the utils subdirectory, for definitions shared
  3. * between the library implementations but not intended to be exposed
  4. * further than that.
  5. */
  6. void dputs(const char *);
  7. char *dupvprintf_inner(char *buf, size_t oldlen, size_t *sizeptr,
  8. const char *fmt, va_list ap);
  9. const char *host_strchr_internal(const char *s, const char *set, bool first);