mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 01:31:08 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23055 72102866-910b-0410-8b05-ffd578937521
8 lines
290 B
Objective-C
8 lines
290 B
Objective-C
#include <Foundation/Foundation.h>
|
|
int main ()
|
|
{
|
|
static unsigned char bytes[9] = {'\355', '\264', '\200', '\346', '\224', '\200', '\347', '\214', '\200'};
|
|
NSString *s = [[NSString alloc] initWithBytes: bytes length: 9 encoding: NSUTF8StringEncoding];
|
|
NSLog(@"s %@", s);
|
|
return 0;
|
|
}
|