testc_helpers.h 471 B

12345678910111213141516171819202122
  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. int faux_testc_file_cmp(const char *first_file, const char *second_file);
  13. C_DECL_END
  14. #endif /* _faux_testc_helpers_h */