]> git.draconx.ca Git - cdecl99.git/blobdiff - t/test.h
libcdecl: Try unsigned __int64 for a 64-bit type.
[cdecl99.git] / t / test.h
index 0d009f0e2ec306e09bcb1a0bb3892aecd4b5908b..2a872f7f22450dbfd9d557c4fefc28af552bdfe2 100644 (file)
--- a/t/test.h
+++ b/t/test.h
@@ -1,5 +1,5 @@
 /*
- * Copyright © 2012, 2020, 2022-2023 Nick Bowler
+ * Copyright © 2012, 2020, 2022-2024 Nick Bowler
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 #endif
 
 #define MIN(a, b) ((a) < (b) ? (a) : (b))
+#define MAX(a, b) ((a) > (b) ? (a) : (b))
+
+/*
+ * The test_uintmax typedef is interchangeable with cdecl_uintmax defined in
+ * <cdecl.h>, but we may want to avoid including that header for some tests.
+ */
+#if HAVE_UNSIGNED_LONG_LONG_INT
+typedef unsigned long long test_uintmax;
+#elif HAVE_UNSIGNED___INT64
+typedef unsigned __int64 test_uintmax;
+#else
+typedef unsigned long test_uintmax;
+#endif
 
 struct cdecl_declspec;
 struct option;
@@ -35,10 +48,22 @@ struct cdecl;
 
 struct test_rng;
 
+void print_error(const char *fmt, ...);
+
 void *malloc_nofail(size_t size);
 void *realloc_nofail(void *ptr, size_t size);
 
-bool strict_strtoul(unsigned long *val, const char *str, int base);
+bool test_strtoumax(test_uintmax *out, const char *s, test_uintmax limit);
+
+static inline bool test_strtoul(unsigned long *val, const char *str)
+{
+       test_uintmax v;
+       bool rc;
+
+       rc = test_strtoumax(&v, str, (unsigned long)-1);
+       *val = v;
+       return rc;
+}
 
 void test_print_options(const struct option *lopts);
 
@@ -70,6 +95,10 @@ static inline int test_rng_50_50(struct test_rng *rng)
 #define VERSION_NO_COPYRIGHT_SYMBOL 1
 #include "version.h"
 
+#ifdef PROGNAME
+const char *progname = PROGNAME;
+#endif
+
 #define test_print_version(s) \
        do_print_version(s " (" PACKAGE_NAME ") " PACKAGE_VERSION)