11 lines
326 B
C
11 lines
326 B
C
// No-op stubs when libintl.a is unavailable (gettext NLS not needed for image resize).
|
|
const char* libintl_bindtextdomain(const char* domain, const char* dir) {
|
|
(void)dir;
|
|
return domain;
|
|
}
|
|
|
|
const char* libintl_bind_textdomain_codeset(const char* domain, const char* codeset) {
|
|
(void)codeset;
|
|
return domain;
|
|
}
|