Are there any tools that I can use to parse c struct to java interface automatically? an example would be:
typedef struct C {
int x;
byte y;
}C;
//Java
interface C {
public int x();
public byte y();
public void x(int val);
public void y(byte val);
}
byte(orbtye) type in C right?