mirror of
https://git.ethanthesleepy.one/ethanaobrien/ew
synced 2026-01-12 08:12:36 +08:00
8 lines
187 B
C
8 lines
187 B
C
#include <android/log.h>
|
|
|
|
#define LOGI(tag, ...) __android_log_print(ANDROID_LOG_INFO, tag, __VA_ARGS__)
|
|
|
|
void android_log(const char* tag, const char* out) {
|
|
LOGI(tag, "%s", out);
|
|
}
|