1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-19 10:42:10 +00:00

Add nullchar constant, NULLCHAR feature, and vectrex encoding

This commit is contained in:
Karol Stasiak
2019-08-16 00:46:11 +02:00
parent 263647c59c
commit 960d16fa18
10 changed files with 139 additions and 64 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ word strz2word(pointer str) {
errno = err_ok
while true {
char = str[i]
if char == 0 {
if char == nullchar {
if i == 0 {
errno = err_numberformat
}