1
0
mirror of https://github.com/20kdc/OC-KittenOS.git synced 2024-09-20 02:08:56 +10:00
OC-KittenOS/com2/preproc.lua
20kdc 4a57c9f175 bye bye sys-donkonit, hello sys-glacier
because apparently that's a dead meme now? Hmph.
2018-03-19 01:27:30 +00:00

21 lines
452 B
Lua

-- PREPROC: preprocess input to be 7-bit
-- This is released into the public domain.
-- No warranty is provided, implied or otherwise.
while true do
local c = io.read(1)
if not c then return end
local bc = c:byte()
if bc < 127 then
io.write(c)
else
if bc <= 253 then
-- 127(0) through 253(126)
io.write("\x7F" .. string.char(bc - 127))
else
-- 254(0) through 255 (1)
io.write("\x7F\x7F" .. string.char(bc - 254))
end
end
end