Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 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