mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-04 09:04:33 +00:00
10 lines
130 B
Plaintext
10 lines
130 B
Plaintext
|
|
|
|
byte strzlen(pointer str) {
|
|
byte index
|
|
index = 0
|
|
while str[index] != 0 {
|
|
index += 1
|
|
}
|
|
return index
|
|
} |