mirror of
https://github.com/KarolS/millfork.git
synced 2024-12-23 08:29:35 +00:00
29 lines
464 B
Plaintext
29 lines
464 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
|
|
}
|
|
}
|
|
|
|
void putstrz(pointer str) {
|
|
byte index
|
|
index = 0
|
|
while str[index] != 0 {
|
|
putchar(str[index])
|
|
index += 1
|
|
}
|
|
}
|
|
|
|
byte strzlen(pointer str) {
|
|
byte index
|
|
index = 0
|
|
while str[index] != 0 {
|
|
index += 1
|
|
}
|
|
return index
|
|
}
|