mirror of
https://github.com/KarolS/millfork.git
synced 2025-01-09 13:31:32 +00:00
10 lines
192 B
Plaintext
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
|
||
|
}
|
||
|
}
|