X-Git-Url: https://git.draconx.ca/gitweb/dxcommon.git/blobdiff_plain/0ee27791cef1166e467dc0b3eba88656d835ab32..02e6afe4c4956fd667dfefc04e8f129b5b84f709:/t/nls/gettext.h diff --git a/t/nls/gettext.h b/t/nls/gettext.h new file mode 100644 index 0000000..b8a8060 --- /dev/null +++ b/t/nls/gettext.h @@ -0,0 +1,17 @@ +/* + * Copyright © 2023 Nick Bowler + * + * Stub gettext macros for test purposes. + * + * License WTFPL2: Do What The Fuck You Want To Public License, version 2. + * This is free software: you are free to do what the fuck you want to. + * There is NO WARRANTY, to the extent permitted by law. + */ + +#ifndef TEST_NLS_GETTEXT_H_ +#define TEST_NLS_GETTEXT_H_ + +#define gettext(s) (s) +#define pgettext_expr(a, s) (s) + +#endif