aboutsummaryrefslogtreecommitdiff
path: root/subhook.c
diff options
context:
space:
mode:
Diffstat (limited to 'subhook.c')
-rw-r--r--subhook.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/subhook.c b/subhook.c
index 1e3beb0..a0433eb 100644
--- a/subhook.c
+++ b/subhook.c
@@ -27,29 +27,29 @@
#include "subhook_private.h"
SUBHOOK_EXPORT void *SUBHOOK_API subhook_get_src(subhook_t hook) {
- if (!hook) {
- return 0;
+ if (hook == NULL) {
+ return NULL;
}
return hook->src;
}
SUBHOOK_EXPORT void *SUBHOOK_API subhook_get_dst(subhook_t hook) {
- if (!hook) {
- return 0;
+ if (hook == NULL) {
+ return NULL;
}
return hook->dst;
}
SUBHOOK_EXPORT void *SUBHOOK_API subhook_get_trampoline(subhook_t hook) {
- if (!hook) {
- return 0;
+ if (hook == NULL) {
+ return NULL;
}
return hook->trampoline;
}
SUBHOOK_EXPORT int SUBHOOK_API subhook_is_installed(subhook_t hook) {
- if (!hook) {
- return 0;
+ if (hook == NULL) {
+ return false;
}
return hook->installed;
}