You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This avoid conflicting definitions of max() and min().
Fixeskartverket#20
The patch was fetched from Gnonthgol@005e527 .
Note, github added several charset transcoding changes too. These are not wanted nor needed.
if (c == EOF) {
Denne blir aldri sann i Unicode, fordi
c
er enchar
ogEOF
er enint
.c
må derfor castes tilchar
:if (c == (char)EOF) {
Samme "umulige" sammenligning gjøres i følgende andre funksjoner:
UT_ReadLineCrlf(...)
UT_ReadFile(...)
(2 varianter)UT_ReadXMLLine(...)
The text was updated successfully, but these errors were encountered: