langs a-z
This commit is contained in:
parent
db842d013d
commit
d066446780
11389 changed files with 98361 additions and 1020 deletions
11
Task/Host-introspection/Objective-C/host-introspection-1.m
Normal file
11
Task/Host-introspection/Objective-C/host-introspection-1.m
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
switch (NSHostByteOrder()) {
|
||||
case NS_BigEndian:
|
||||
NSLog(@"%@", @"Big Endian");
|
||||
break;
|
||||
case NS_LittleEndian:
|
||||
NSLog(@"%@", @"Little Endian");
|
||||
break;
|
||||
case NS_UnknownByteOrder:
|
||||
NSLog(@"%@", @"endianness unknown");
|
||||
break;
|
||||
}
|
||||
21
Task/Host-introspection/Objective-C/host-introspection-2.m
Normal file
21
Task/Host-introspection/Objective-C/host-introspection-2.m
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
switch ([NSRunningApplication currentApplication].executableArchitecture) {
|
||||
case NSBundleExecutableArchitectureI386:
|
||||
NSLog(@"%@", @"i386 32-bit");
|
||||
break;
|
||||
|
||||
case NSBundleExecutableArchitectureX86_64:
|
||||
NSLog(@"%@", @"x86_64 64-bit");
|
||||
break;
|
||||
|
||||
case NSBundleExecutableArchitecturePPC:
|
||||
NSLog(@"%@", @"PPC 32-bit");
|
||||
break;
|
||||
|
||||
case NSBundleExecutableArchitecturePPC64:
|
||||
NSLog(@"%@", @"PPC64 64-bit");
|
||||
break;
|
||||
|
||||
default:
|
||||
NSLog(@"%@", @"Unknown");
|
||||
break;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue