add: Zygiskd C99 re-write

This commit re-writes Zygiskd to be C99.
This commit is contained in:
ThePedroo
2024-07-17 17:56:38 -03:00
parent 3d2125d6c0
commit 5635c9f7c5
28 changed files with 1039 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef KERNELSU_H
#define KERNELSU_H
#include "../constants.h"
enum RootImplState ksu_get_kernel_su();
bool ksu_uid_granted_root(int uid);
bool ksu_uid_should_umount(int uid);
bool ksu_uid_is_manager(int uid);
#endif