Lines Matching refs:op

190 sfpututf(Sfio_t* op, register int w)  in sfpututf()  argument
193 return sfputc(op, w); in sfpututf()
195 sfputc(op, 0xC0 + (w >> 6)); in sfpututf()
198 sfputc(op, 0xE0 + (w >> 12)); in sfpututf()
199 sfputc(op, 0x80 + (w >> 6 ) & 0x3F); in sfpututf()
202 return sfputc(op, '?'); in sfpututf()
203 return sfputc(op, 0x80 + (w & 0x3F)); in sfpututf()
216 html2msg(register Sfio_t* ip, register Sfio_t* op, int flags) in html2msg() argument
258 sfpututf(op, c); in html2msg()
277 sfputc(op, q); in html2msg()
286 sfputc(op, ' '); in html2msg()
294 sfputc(op, q); in html2msg()
297 sfputc(op, '\n'); in html2msg()
300 sfputc(op, c); in html2msg()
304 sfputc(op, ' '); in html2msg()
305 sfputc(op, '"'); in html2msg()
318 sfputc(op, '\n'); in html2msg()
335 sfpututf(op, c); in html2msg()
338 sfpututf(op, c); in html2msg()
353 sfputc(op, '\\'); in html2msg()
354 sfputc(op, c); in html2msg()
359 sfputc(op, c); in html2msg()
370 sfputc(op, ' '); in html2msg()
371 sfpututf(op, c); in html2msg()
384 sfputc(op, ' '); in html2msg()
390 sfputc(op, ' '); in html2msg()
400 sfpututf(op, c); in html2msg()
406 sfputc(op, q); in html2msg()
407 sfputc(op, '\n'); in html2msg()
411 encode(Sfio_t* op, register int c) in encode() argument
414 sfprintf(op, "<"); in encode()
416 sfprintf(op, ">"); in encode()
418 sfprintf(op, """); in encode()
420 sfprintf(op, "&"); in encode()
422 sfprintf(op, "["); in encode()
424 sfprintf(op, "]"); in encode()
426 sfputc(op, c); in encode()
430 msg2html(register Sfio_t* ip, register Sfio_t* op, register int flags) in msg2html() argument
437 …sfprintf(op, "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\"><HTML><HEAD><!-- text massaged fo… in msg2html()
438 sfprintf(op, "<OL START=\"550717\">\n"); in msg2html()
444 sfprintf(op, "<P>"); in msg2html()
450 sfprintf(op, "<P>"); in msg2html()
453 sfprintf(op, "<P CLASS=\"", s); in msg2html()
455 encode(op, c); in msg2html()
456 sfprintf(op, "\">\n"); in msg2html()
462 sfprintf(op, "<LI>"); in msg2html()
464 sfputc(op, c); in msg2html()
465 sfprintf(op, "<LI>"); in msg2html()
473 sfprintf(op, "<BR>"); in msg2html()
485 sfprintf(op, "\">"); in msg2html()
487 sfputc(op, '\n'); in msg2html()
490 sfprintf(op, "&lt;"); in msg2html()
493 sfprintf(op, "&gt;"); in msg2html()
496 sfprintf(op, "&amp;"); in msg2html()
499 sfprintf(op, "&#091;"); in msg2html()
502 sfprintf(op, "&#093;"); in msg2html()
508 sfprintf(op, "<P CLASS=\""); in msg2html()
510 sfputc(op, c); in msg2html()
512 sfputc(op, c); in msg2html()
519 sfprintf(op, "<P CLASS=\""); in msg2html()
521 sfputc(op, c); in msg2html()
523 sfputc(op, *s++); in msg2html()
532 encode(op, c); in msg2html()
535 sfprintf(op, "&nbsp;"); in msg2html()
552 sfprintf(op, "<P CLASS=\""); in msg2html()
557 sfputc(op, c); in msg2html()
559 sfprintf(op, "&nbsp;"); in msg2html()
572 sfprintf(op, "<P CLASS=\""); in msg2html()
574 sfputc(op, '\\'); in msg2html()
575 encode(op, c); in msg2html()
592 sfputc(op, c); in msg2html()
593 sfputc(op, *s++); in msg2html()
600 sfputc(op, c); in msg2html()
603 sfputc(op, *s++); in msg2html()
608 encode(op, c); in msg2html()
613 sfputc(op, *s++); in msg2html()
615 sfputc(op, *s++); in msg2html()
618 sfprintf(op, "&nbsp;"); in msg2html()
631 sfprintf(op, " \">"); in msg2html()
634 sfprintf(op, "<BR>"); in msg2html()
643 sfprintf(op, "\">"); in msg2html()
645 sfputc(op, c); in msg2html()
651 sfprintf(op, "</OL>\n"); in msg2html()
652 sfprintf(op, "</BODY></HTML>\n"); in msg2html()