#include "../src/i18n.c" #include #include "../src/logerr.h" int main(void) { int rc = -1; if (getenv("DUMP_TRANSLATABLE_STRINGS")) { if (dump_translatable_strings(MSGS)) { logerr("dump_translatable_strings(MSGS)\n"); goto out; } } rc = 0; out: return !!rc; }