Lines Matching refs:text
145 static char msgbuf[MM_MXTXTLN+1]; /* Buffer for message text */
179 * only the text-component of a message is printed. (This piece
182 (void) putenv("MSGVERB=text");
186 * void wrtmsg(severity, action, tag, text[, txtarg1[, txtarg2[, ...]]])
196 * text The text-string used to generate the text-component
198 * txtarg Arguments to be inserted into the "text" string using
207 wrtmsg(int severity, char *action, char *tag, char *text, ...)
216 va_start(argp, text);
217 if (text != MM_NULLTXT) {
219 errorflg = vsnprintf(msgbuf, sizeof (msgbuf), text, argp) >
223 (text == MM_NULLTXT) ? MM_NULLTXT : msgbuf,