]> git.draconx.ca Git - dxcommon.git/blob - src/copysym.h
DX_C_ALIGNAS: Work around bash-5 parsing bug.
[dxcommon.git] / src / copysym.h
1 /*
2  * Copyright © 2023 Nick Bowler
3  *
4  * Helper function to output the copyright symbol in a specified encoding.
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 DX_COPYSYM_H_
12 #define DX_COPYSYM_H_
13
14 #if ENABLE_NLS
15 const char *copyright_symbol(const char *charset);
16 #else
17 #define copyright_symbol(x) "(C)"
18 #endif
19
20 #endif