| 1383 | } |
| 1384 | |
| 1385 | char * |
| 1386 | libpq_ngettext(const char *msgid, const char *msgid_plural, unsigned long n) |
| 1387 | { |
| 1388 | libpq_binddomain(); |
| 1389 | return dngettext(PG_TEXTDOMAIN("libpq"), msgid, msgid_plural, n); |
| 1390 | } |
| 1391 | |
| 1392 | #endif /* ENABLE_NLS */ |
no test coverage detected