mirror of
https://github.com/ish-app/ish.git
synced 2026-01-25 14:06:40 +00:00
17 lines
220 B
C
17 lines
220 B
C
//
|
|
// hook.h
|
|
// iSH
|
|
//
|
|
// Created by Saagar Jha on 12/29/22.
|
|
//
|
|
|
|
#ifndef hook_h
|
|
#define hook_h
|
|
|
|
#include <stdbool.h>
|
|
|
|
void *find_symbol(void *base, char *symbol);
|
|
bool hook(void *old, void *new);
|
|
|
|
#endif /* hook_h */
|