blob: 5add18c50e7a23d727e1d6db487d52cc54bf6238 [file] [log] [blame]
#import <Foundation/NSObject.h>
#import <Foundation/NSString.h>
// TODO(#309): strConcat should just be a static function.
@interface StringUtil : NSObject {}
+ (NSString*)strConcat:(NSString*)a with:(NSString*)b;
@end
@implementation StringUtil
+ (NSString*)strConcat:(NSString*)a with:(NSString*)b {
return [a stringByAppendingString:b];
}
@end