diff options
Diffstat (limited to 'utils/autodict_ql/strcmp-str.ql')
-rw-r--r-- | utils/autodict_ql/strcmp-str.ql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/utils/autodict_ql/strcmp-str.ql b/utils/autodict_ql/strcmp-str.ql new file mode 100644 index 00000000..83ffadaf --- /dev/null +++ b/utils/autodict_ql/strcmp-str.ql @@ -0,0 +1,8 @@ +import cpp + +/// function : strcmp + +from FunctionCall fucall, Expr size +where + fucall.getTarget().hasName("strcmp") +select fucall.getArgument(_).getValueText() \ No newline at end of file |