parse_configuration.h 482 B

1234567891011121314151617181920212223
  1. /*
  2. parse_configuration.h
  3. TrustKit
  4. Copyright 2016 The TrustKit Project Authors
  5. Licensed under the MIT license, see associated LICENSE file for terms.
  6. See AUTHORS file for the list of project authors.
  7. */
  8. #ifndef parse_configuration_h
  9. #define parse_configuration_h
  10. #if __has_feature(modules)
  11. @import Foundation;
  12. #else
  13. #import <Foundation/Foundation.h>
  14. #endif
  15. NSDictionary *parseTrustKitConfiguration(NSDictionary *trustKitArguments);
  16. #endif /* parse_configuration_h */