Lines Matching refs:text
160 static char msgbuf[MM_MXTXTLN+1]; /* Buffer for message text */
193 /* Restrict messages to the text-component */
194 (void) putenv("MSGVERB=text");
199 * void wrtmsg(severity, action, tag, text[, txtarg1[, txtarg2[, ...]]])
208 * text The text-string used to generate the text-
210 * txtarg Arguments to be inserted into the "text"
217 wrtmsg(int severity, char *action, char *tag, char *text, ...)
227 va_start(argp, text);
228 if (text != MM_NULLTXT) {
230 MM_MXTXTLN, text, argp) > MM_MXTXTLN;
233 (text == MM_NULLTXT) ? MM_NULLTXT : msgbuf, action, tag);