Lines Matching refs:msgfmt
1673 new_message_v(const char *msgfmt, va_list ap) in new_message_v() argument
1688 (void) vsnprintf(msg, sizeof(msg), msgfmt, ap); in new_message_v()
1723 new_message(const char *msgfmt, ...) in new_message() argument
1728 va_start(ap, msgfmt); in new_message()
1729 new_message_v(msgfmt, ap); in new_message()
1742 message_error(const char *msgfmt, ...) in message_error() argument
1747 va_start(ap, msgfmt); in message_error()
1748 new_message_v(msgfmt, ap); in message_error()
1787 message_prompt_v(int so, const char *msgfmt, va_list ap) in message_prompt_v() argument
1797 i = vsnprintf(msg, sizeof(msg), msgfmt, ap); in message_prompt_v()
1829 message_prompt(const char *msgfmt, ...) in message_prompt() argument
1834 va_start(ap, msgfmt); in message_prompt()
1835 message_prompt_v(Yes, msgfmt, ap); in message_prompt()
1840 message_prompt_plain(const char *msgfmt, ...) in message_prompt_plain() argument
1845 va_start(ap, msgfmt); in message_prompt_plain()
1846 message_prompt_v(No, msgfmt, ap); in message_prompt_plain()