mirror of
https://github.com/DMaroo/GhidRust.git
synced 2025-12-24 19:20:22 +01:00
10 lines
166 B
Java
10 lines
166 B
Java
package ghidrust.decompiler.parser.c;
|
|
|
|
public class CContext {
|
|
public boolean statement_end_sc;
|
|
|
|
public CContext() {
|
|
statement_end_sc = true;
|
|
}
|
|
}
|