mirror of
https://github.com/KarolS/millfork.git
synced 2025-01-01 06:29:53 +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
|
|
}
|
|
} |