From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/utf8proc/test/tests.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/utf8proc/test/tests.h (limited to 'src/utf8proc/test/tests.h') diff --git a/src/utf8proc/test/tests.h b/src/utf8proc/test/tests.h new file mode 100644 index 000000000..1811a734a --- /dev/null +++ b/src/utf8proc/test/tests.h @@ -0,0 +1,23 @@ +/* Common functions and includes for our test programs. */ + +/* + * Set feature macro to enable getline() and wcwidth(). + * + * Please refer to section 2.2.1 of POSIX.1-2008: + * http://pubs.opengroup.org/onlinepubs/9699919799/functions/V2_chap02.html#tag_15_02_01_02 + */ +#define _XOPEN_SOURCE 700 + +#include +#include +#include +#include +#include + +#include "../utf8proc.h" + +extern size_t lineno; + +void check(int cond, const char *format, ...); +size_t skipspaces(const char *buf, size_t i); +size_t encode(char *dest, const char *buf); -- cgit v1.2.3