blob: e46781add151f98042632b542a6d4dae586a2ec6 (
plain)
1
2
3
4
5
6
7
|
sp.disable_function.function("system").drop();
sp.disable_function.function("vprintf").hash("123456789").drop();
sp.disable_function.function("printf").disable().drop();
sp.disable_function.function("printf").simulation().drop();
sp.disable_function.function("print").disable().drop(); # this is a comment
sp.disable_function.function_r("^var_dump$").drop();
sp.disable_function.function("sprintf").filename("wrong file name").drop();
|