millfork/include/stdio.mfk

10 lines
192 B
Plaintext

// target-independent standard I/O routines
void putstr(pointer str, byte len) {
byte index
index = 0
while (index != len) {
putchar(str[index])
index += 1
}
}