gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:putChar from tkernel_2/monitor/cmdsvc/src/console.c (0.00 seconds)
tkernel_2
monitor/cmdsvc/src/console.c - 8.9KB - 293 lines
93:         while ((c = *str++)) {
94:                 if (putChar(c) < 0) return -1;
95:         }
107: { 108: if (putChar(Digit[(val >> 4) & 0x0f]) < 0) return -1; 109: if (putChar(Digit[(val >> 0) & 0x0f]) < 0) return -1; 110: return 0;
147: for (; i >= 0; i--) { 148: if (putChar(d[i]) < 0) return -1; 149: }