NVSL/cfiddle

We don't handle [] in argument lists

Opened this issue · 1 comments

CProtoParser doesn't recognize this:

void readMemoryByte(size_t malicious_x, uint8_t value[2], int score[2], int try_count) {

as a function because of the [].

It's true that it doesn't recognize it, but it's also true that we can't call this function either because we don't handle pointers. If we ever figure out how to deal with pointers, we should fix this.

We can view the source with .source("readMemoryByte") without problem.