URLEncode.h 421 B

123456789101112131415161718192021222324
  1. //
  2. // URLEncode.h
  3. // TunneledWebRequest
  4. //
  5. /*
  6. Licensed under Creative Commons Zero (CC0).
  7. https://creativecommons.org/publicdomain/zero/1.0/
  8. */
  9. // NOTE: this file is shared by TunneledWebRequest and TunneledWebView
  10. #import <Foundation/Foundation.h>
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface URLEncode : NSObject
  13. // See comment in URLEncode.m
  14. + (NSString*__nullable)encode:(NSString*)url;
  15. @end
  16. NS_ASSUME_NONNULL_END