mach-detours/tests/lib_function.h
2025-10-02 21:11:17 +02:00

15 lines
192 B
C

// Copyright (c) Lysann Tranvouez. All rights reserved.
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
extern int libFunctionCounter;
int libFunction();
#ifdef __cplusplus
}
#endif