]> git.draconx.ca Git - dxcommon.git/blob - t/nls/gettext.h
b8a8060bc4bfc4760662ed097a0f2c6e52762745
[dxcommon.git] / t / nls / gettext.h
1 /*
2  * Copyright © 2023 Nick Bowler
3  *
4  * Stub gettext macros for test purposes.
5  *
6  * License WTFPL2: Do What The Fuck You Want To Public License, version 2.
7  * This is free software: you are free to do what the fuck you want to.
8  * There is NO WARRANTY, to the extent permitted by law.
9  */
10
11 #ifndef TEST_NLS_GETTEXT_H_
12 #define TEST_NLS_GETTEXT_H_
13
14 #define gettext(s) (s)
15 #define pgettext_expr(a, s) (s)
16
17 #endif