corrode
corrode copied to clipboard
Arrays without explicit size
In C, we have a bunch of things like:
const char *names[] = {
"abc",
"def",
"ghi",
}
But corrode doesn't recognize this and I have to put [3]
instead of []
.