Lines Matching refs:msgs
32 static struct lc_messages msgs; variable
37 (void) memset(&msgs, 0, sizeof (msgs)); in init_messages()
53 msgs.yesstr = str; in add_message()
56 msgs.nostr = str; in add_message()
59 msgs.yesexpr = str; in add_message()
62 msgs.noexpr = str; in add_message()
77 if (msgs.yesstr == NULL) { in dump_messages()
79 msgs.yesstr = ""; in dump_messages()
81 if (msgs.nostr == NULL) { in dump_messages()
83 msgs.nostr = ""; in dump_messages()
90 if ((ptr = strchr(msgs.yesstr, ':')) != NULL) in dump_messages()
92 if ((ptr = strchr(msgs.nostr, ':')) != NULL) in dump_messages()
99 if ((putl_category(msgs.yesexpr, f) == EOF) || in dump_messages()
100 (putl_category(msgs.noexpr, f) == EOF) || in dump_messages()
101 (putl_category(msgs.yesstr, f) == EOF) || in dump_messages()
102 (putl_category(msgs.nostr, f) == EOF)) { in dump_messages()