testc_helpers.h 397 B

123456789101112131415161718192021
  1. /** @file testc_helpers.h
  2. * @brief Testc helper functions.
  3. */
  4. #ifndef _faux_testc_helpers_h
  5. #define _faux_testc_helpers_h
  6. #include <stddef.h>
  7. #include "faux/faux.h"
  8. #define FAUX_TESTC_TMPDIR_ENV "TESTC_TMPDIR"
  9. C_DECL_BEGIN
  10. ssize_t faux_testc_file_deploy(const char *fn, const char *str);
  11. char *faux_testc_tmpfile_deploy(const char *str);
  12. C_DECL_END
  13. #endif /* _faux_testc_helpers_h */