summaryrefslogtreecommitdiff
path: root/tests/projects/other/bin2obj/transform.lua
blob: 54cf1f39458252c663199f227ca0061fafccf6b8 (plain)
1
2
3
4
5
function main(inputfile, outputfile)
    import("core.base.bytes")
    local data = io.readfile(inputfile, {encoding = "binary"})
    io.writefile(outputfile, data:reverse(), {encoding = "binary"})
end