diff options
author | John Ankarström <john@ankarstrom.se> | 2022-08-15 22:22:20 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-08-15 22:22:20 +0200 |
commit | 8877627ee3fcd5a8f0ce2fcccec7688973e9cb2d (patch) | |
tree | 6a57fcb19aa77dfece89b000ae656c9549e7c156 /c/test.h | |
parent | 509c461498f0e68a62c004778df890d56ebb2a09 (diff) | |
download | EpisodeBrowser-8877627ee3fcd5a8f0ce2fcccec7688973e9cb2d.tar.gz |
Diffstat (limited to 'c/test.h')
-rw-r--r-- | c/test.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/c/test.h b/c/test.h new file mode 100644 index 0000000..5565b36 --- /dev/null +++ b/c/test.h @@ -0,0 +1,13 @@ +#ifndef TEST_H +#define TEST_H + +struct Test +{ + const char* name = {0}; + char error[64] = {0}; + Test(const char* name); +}; + +int RunTests(); + +#endif |