mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
27 lines
427 B
Objective-C
27 lines
427 B
Objective-C
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
#import "CocoaCategories.h"
|
|
|
|
@implementation NSObject (NeoVimServer)
|
|
|
|
- (const char *)cdesc {
|
|
return self.description.cstr;
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation NSString (NeoVimServer)
|
|
|
|
- (const char *)cstr {
|
|
return [self cStringUsingEncoding:NSUTF8StringEncoding];
|
|
}
|
|
|
|
- (NSUInteger)clength {
|
|
return [self lengthOfBytesUsingEncoding:NSUTF8StringEncoding];
|
|
}
|
|
|
|
@end
|