qb64-include/truncate.bm
2022-09-19 01:27:48 +02:00

6 lines
No EOL
190 B
Text

$if Truncate = undefined then
$let Truncate = defined
Function Truncate~%% (value&)
Truncate~%% = (value& > 0) * (((value& < 256) * value&) + ((value& > 255) * 255))
End Function
$end if