mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-24 18:45:28 +00:00
21 lines
248 B
C
21 lines
248 B
C
#ifndef _UTILS_H_
|
|
#define _UTILS_H_
|
|
|
|
#include <sys/types.h>
|
|
#include <stdio.h>
|
|
|
|
#include "magisk.h"
|
|
|
|
// xwrap.c
|
|
|
|
FILE *xfopen(const char *pathname, const char *mode);
|
|
|
|
// vector.c
|
|
|
|
#include "vector.h"
|
|
|
|
// log_monitor.c
|
|
|
|
void monitor_logs();
|
|
|
|
#endif |