summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLunar Journal <md.node.0@gmail.com>2024-12-16 09:57:49 +0200
committerGitHub <noreply@github.com>2024-12-16 09:57:49 +0200
commit06a7c660daef946c69b63e07fe85ea7dbcf7ae31 (patch)
treea98d561696e1bb68d065ef507e79d6b03b2e511f /README.md
parentd949c9b8252a79fc230c3069c6b49847236349ff (diff)
downloadcdl86-06a7c660daef946c69b63e07fe85ea7dbcf7ae31.tar.gz
cdl86-06a7c660daef946c69b63e07fe85ea7dbcf7ae31.zip
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 8d28489..3934143 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ It allows for the interception of `x86` and `x86_64` `C/C++` binary functions in
The library currently supports two types of function hooks:
* `JMP` patch - patches origin function with a `JMP` to detour.
* `INT3` patch - places software breakpoint (`SWBP`) at origin address.<br>
-Handles `control flow` to detour.
+Handles `control flow` to `detour`.
> Note: This project makes use of an internal `x86` instruction length disassembly engine.
@@ -47,7 +47,7 @@ int add(
```
Assuming we want to hook this function with `cdl86` the first step
-is to define a function pointer typedef and declare our detour function:
+is to define a function pointer typedef and declare our `detour` function:
```
typedef int add_t(