blob: 5cab83ad640d4389bdda11c8194537674399cdf7 (
plain)
1
2
3
4
5
6
7
8
9
|
///void NSLog(id x);
#include <Cocoa/Cocoa.h>
NSString* nsstring2(string s) {
return [ [ NSString alloc ] initWithBytesNoCopy:s.str length:s.len
encoding:NSUTF8StringEncoding freeWhenDone: false];
}
|