Home | History | Annotate | Download | only in examples

Lines Matching refs:putc

56 #include <stdio.h>      /* fputs(), fprintf(), fwrite(), putc() */
247 putc(val & 0xff, out);
248 putc((val >> 8) & 0xff, out);
249 putc((val >> 16) & 0xff, out);
250 putc((val >> 24) & 0xff, out);
383 putc(last, out);
389 putc(last, out);
391 putc(0, out); /* two more bits in block header */
398 putc(last | 8, out);
401 putc(last | 0x20, out);
404 putc(last | 0x80, out);
405 putc(0, out);