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