#import <Foundation/Foundation.h>
#ifdef DEBUG
NS_ASSUME_NONNULL_BEGIN
BOOL IsDebuggerAttached(void);
void TrapDebugger(void);
NS_ASSUME_NONNULL_END
#else
NS_INLINE BOOL IsDebuggerAttached(void)
{
return NO;
}
NS_INLINE void TrapDebugger(void)
{
}
#endif