From a984eb367c032dbe2577f01238c3d1268526be70 Mon Sep 17 00:00:00 2001 From: Kacper Date: Thu, 25 Dec 2025 19:24:38 +0100 Subject: Clang-tidy fixes --- tests/headers/libintl.c | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 tests/headers/libintl.c (limited to 'tests/headers/libintl.c') diff --git a/tests/headers/libintl.c b/tests/headers/libintl.c deleted file mode 100644 index bc9d579c..00000000 --- a/tests/headers/libintl.c +++ /dev/null @@ -1,35 +0,0 @@ -// https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/libintl.h.html - -#include "core.h" - -#include - -TEST(libintl_h) -{ - MACRO(TEXTDOMAIN_MAX); - TYPE(locale_t); - - FUNCTION(bindtextdomain, FN(char *, const char *, const char *)); - FUNCTION(bind_textdomain_codeset, - FN(char *, const char *, const char *)); - FUNCTION(dcgettext, FN(char *, const char *, const char *, int)); - FUNCTION(dcgettext_l, - FN(char *, const char *, const char *, int, locale_t)); - FUNCTION(dcngettext, FN(char *, const char *, const char *, - const char *, unsigned long, int)); - FUNCTION(dcngettext_l, FN(char *, const char *, const char *, - const char *, unsigned long, int, locale_t)); - FUNCTION(dgettext, FN(char *, const char *, const char *)); - FUNCTION(dgettext_l, FN(char *, const char *, const char *, locale_t)); - FUNCTION(dngettext, FN(char *, const char *, const char *, const char *, - unsigned long)); - FUNCTION(dngettext_l, FN(char *, const char *, const char *, - const char *, unsigned long, locale_t)); - FUNCTION(gettext, FN(char *, const char *)); - FUNCTION(gettext_l, FN(char *, const char *, locale_t)); - FUNCTION(ngettext, - FN(char *, const char *, const char *, unsigned long)); - FUNCTION(ngettext_l, FN(char *, const char *, const char *, - unsigned long, locale_t)); - FUNCTION(textdomain, FN(char *, const char *)); -} -- cgit v1.2.3