mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2025-03-15 10:56:12 +00:00
16 lines
336 B
C
16 lines
336 B
C
#ifndef USEFUL_H
|
|
#define USEFUL_H
|
|
|
|
#include <switch.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
#define LOAD64(x) *(u64 *)(x)
|
|
|
|
#define LINKABLE __attribute__ ((weak))
|
|
|
|
#define debug_log(...) \
|
|
{char log_buf[0x200]; snprintf(log_buf, 0x200, __VA_ARGS__); \
|
|
svcOutputDebugString(log_buf, strlen(log_buf));}
|
|
|
|
#endif // USEFUL_H
|