-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Step 6 - Relating two variables #10
Comments
⌨️ Activity: Find all the calls to
|
Congratulations, looks like the query you introduced in dcbd2cb finds the correct results! If you created a pull request, merge it. Let's continue to the next step. |
Step 6: Relating two variables
In step 4, you wrote a query that finds the definitions of functions named
memcpy
in the codebase. Now, we want to find all the calls tomemcpy
in the codebase.One way to do this is to declare two variables: one to represent functions, and one to represent function calls. Then you will have to create a relationship between these variables in the
where
section, so that they are restricted to only functions that are namedmemcpy
, and calls to exactly those functions.The text was updated successfully, but these errors were encountered: