1 | void noop() {} |
---|---|
2 | |
3 | void fun() { |
4 | int user_command = 474747; |
5 | int alias_command = 474747; |
6 | int alias_command_with_arg = 474747; |
7 | int platform = 474747; // built-in command |
8 | noop(); // breakpoint 1 |
9 | } |
10 | |
11 | int main() { |
12 | fun(); |
13 | noop(); // breakpoint 2 |
14 | return 0; |
15 | } |
16 |