Home | History | Annotate | Download | only in ldlinux

Lines Matching refs:ch

15 static void msg_putchar(uint8_t ch);
27 char ch;
41 while ((ch = getc(f)) != EOF) {
43 if (ch == 0x1A)
46 NextCharJump(ch); /* Do what shall be done */
192 static void msg_putchar(uint8_t ch)
195 if (ch >= 0x10 && ch < 0x18) {
196 msg_modectl(ch);
200 switch (ch) {
216 msg_normal(ch);