corrode icon indicating copy to clipboard operation
corrode copied to clipboard

C to Rust translator

Results 81 corrode issues
Sort by recently updated
recently updated
newest added

In C, a function call looks like this: ``` c int putchar(int); putchar('A'); ``` Indirecting through a function pointer looks like this: ``` c int (*f)(int) = &putchar; (*f)('B'); ```...