c2rust-refactor 0.15.0

C2Rust refactoring tool implementation
1
2
3
4
5
6
7
8
9
10
11
DEBUG = false

function debug(str)
    if DEBUG then
        print(str)
    end
end

function starts_with(str, start)
    return str:sub(1, #start) == start
end