blob: 4184c1434f64760bf63d19dc500e6001b7be0145 [file] [log] [blame] [edit]
#import <Foundation/NSObject.h>
#import <Foundation/NSString.h>
// TODO(https://github.com/dart-lang/ffigen/issues/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