1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-27 14:14:19 +03:00
vimr/NeoVimServer/CocoaCategories.h

21 lines
314 B
C
Raw Normal View History

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
2016-10-22 18:25:43 +03:00
@import Foundation;
@interface NSObject (NeoVimServer)
@property (readonly, nonnull) const char *cdesc;
@end
@interface NSString (NeoVimServer)
@property (readonly, nonnull) const char *cstr;
2016-11-10 19:33:14 +03:00
@property (readonly) NSUInteger clength;
@end