123456789101112131415161718192021 |
- /*
-
- TSKLog.h
- TrustKit
-
- Copyright 2015 The TrustKit Project Authors
- Licensed under the MIT license, see associated LICENSE file for terms.
- See AUTHORS file for the list of project authors.
-
- */
- // Common header with internal constants and defines.
- #ifndef TSKLog_h
- #define TSKLog_h
- // The logging function we use within TrustKit
- void TSKLog(NSString *format, ...);
- #endif /* TSKLog_h */
|