mirror of
https://github.com/KarolS/millfork.git
synced 2026-04-20 18:16:35 +00:00
Preprocessor. Z80 improvements. Library improvements.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
|
||||
|
||||
byte strzlen(pointer str) {
|
||||
byte index
|
||||
index = 0
|
||||
while str[index] != 0 {
|
||||
index += 1
|
||||
}
|
||||
return index
|
||||
}
|
||||
Reference in New Issue
Block a user