diff options
| author | cyan <cyjan@mrcyjanek.net> | 2026-03-10 20:23:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-10 20:23:19 +0100 |
| commit | 7e227b0aa00c66d5d407751cac715e61e0c1c373 (patch) | |
| tree | addd746ecb1dc235d97e6fc7ba5d85bed3f905d2 /tests/c/src/utils.h | |
| parent | 2c11591e02b907e63d8fd4fcb0a6559625934a95 (diff) | |
Cleanup and fixes (#180)
Diffstat (limited to 'tests/c/src/utils.h')
| -rw-r--r-- | tests/c/src/utils.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/c/src/utils.h b/tests/c/src/utils.h new file mode 100644 index 0000000..dd99556 --- /dev/null +++ b/tests/c/src/utils.h @@ -0,0 +1,8 @@ +#ifndef UTILS_H +#define UTILS_H + +char* u_mktemp(); +char* u_cat(const char* a, const char* b); +int u_wordcount(const char* str); + +#endif // UTILS_H |
