eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_assert.h 236B

12345678910111213
  1. #pragma once
  2. #include <stdio.h>
  3. #include <stdio.h>
  4. #define TEST_ASSERT(x) { \
  5. if (!((x))) { \
  6. fflush(stdout); \
  7. fprintf(stderr, "FAILED: [%s:%d] %s\n", __FILE__, __LINE__, #x); \
  8. fflush(stderr); \
  9. exit(1); \
  10. } \
  11. }