copysym: Integrate code offset into lookup table.
[dxcommon.git] / src / copysym.h
blob52e0ba022f84b242f0b1ba029cad3639fede92b9
1 /*
2 * Copyright © 2023 Nick Bowler
4 * Helper function to output the copyright symbol in a specified encoding.
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 */
11 #ifndef DX_COPYSYM_H_
12 #define DX_COPYSYM_H_
14 #if ENABLE_NLS
15 const char *copyright_symbol(const char *charset);
16 #else
17 #define copyright_symbol(x) "(C)"
18 #endif
20 #endif