@@ -26,16 +26,16 @@ /* Reference for static linking */ int _OFString_URLEncoding_reference; @implementation OFString (URLEncoding) -- (OFString*)stringByURLEncoding +- (OFString *)stringByURLEncoding { return [self stringByURLEncodingWithAllowedCharacters: "$-_.!*()"]; } -- (OFString*)stringByURLEncodingWithAllowedCharacters: (const char*)allowed +- (OFString *)stringByURLEncodingWithAllowedCharacters: (const char *)allowed { void *pool = objc_autoreleasePoolPush(); const char *string = [self UTF8String]; char *retCString; size_t i; @@ -84,11 +84,11 @@ } return ret; } -- (OFString*)stringByURLDecoding +- (OFString *)stringByURLDecoding { void *pool = objc_autoreleasePoolPush(); OFString *ret; const char *string = [self UTF8String]; char *retCString;