1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-06 00:28:55 +00:00
millfork/docs/stdlib/other.md
2018-12-17 17:18:29 +01:00

701 B

< back to index

stdio

The stdio module automatically imports the string module.
It requires an implementation of void putchar(byte a) and therefore works only on targets with console output.

void putstr(pointer str, byte len)

Prints a string of length len located at address str.

void putstrz(pointer str)

Prints a null-terminated string located at address str.
If the string is longer than 255 bytes, then the behaviour is undefined (might even crash).

string

byte strzlen(pointer str)

Calculates the length of a null-terminated string.
If the string is longer than 255 bytes, then the behaviour is undefined (might even crash).