1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-08-15 04:27:21 +00:00
Files
millfork/include/string.mfk
2018-07-12 19:39:25 +02:00

10 lines
130 B
Plaintext

byte strzlen(pointer str) {
byte index
index = 0
while str[index] != 0 {
index += 1
}
return index
}