├── .gitignore ├── ChangeLog ├── Foundation ├── EncodingFormatExceptions.h ├── FFCallInvocation.h ├── Foundation.h ├── FoundationException.h ├── FoundationExceptions.h ├── GeneralExceptions.h ├── NSAccount.h ├── NSAllocDebugZone.h ├── NSArchiver.h ├── NSArray.h ├── NSAttributedString.h ├── NSAutoreleasePool.h ├── NSBundle.h ├── NSByteOrder.h ├── NSCalendarDate.h ├── NSCalendarDateScanf.h ├── NSCalendarDateScannerHandler.h ├── NSCharacterSet.h ├── NSClassDescription.h ├── NSClassicException.h ├── NSCoder.h ├── NSCoderExceptions.h ├── NSComparisonPredicate.h ├── NSCompoundPredicate.h ├── NSConcreteArray.h ├── NSConcreteCharacterSet.h ├── NSConcreteData.h ├── NSConcreteDate.h ├── NSConcreteDictionary.h ├── NSConcreteFileHandle.h ├── NSConcreteNumber.h ├── NSConcreteScanner.h ├── NSConcreteSet.h ├── NSConcreteString.h ├── NSConcreteTimeZone.h ├── NSConcreteTimeZoneDetail.h ├── NSConcreteUnixTask.h ├── NSConcreteValue.h ├── NSConcreteWindowsFileHandle.h ├── NSConcreteWindowsTask.h ├── NSConnection.h ├── NSData.h ├── NSDate.h ├── NSDateFormatter.h ├── NSDebug.h ├── NSDecimal.h ├── NSDecimalNumber.h ├── NSDefaultZone.h ├── NSDictionary.h ├── NSDistantObject.h ├── NSDistributedLock.h ├── NSDistributedNotificationCenter.h ├── NSEnumerator.h ├── NSError.h ├── NSException.h ├── NSExceptionWithoutNested.h ├── NSExpression.h ├── NSFileHandle.h ├── NSFileHandleExceptions.h ├── NSFileManager.h ├── NSFileURLHandle.h ├── NSFormatter.h ├── NSFrameInvocation.h ├── NSFuncallException.h ├── NSGeometry.h ├── NSHashTable.h ├── NSHost.h ├── NSInvocation.h ├── NSInvocationExceptions.h ├── NSKeyValueCoding.h ├── NSLock.h ├── NSMapTable.h ├── NSMappedData.h ├── NSMethodSignature.h ├── NSNotification.h ├── NSNotificationQueue.h ├── NSNull.h ├── NSNumberFormatter.h ├── NSObjCRuntime.h ├── NSObject+PropLists.h ├── NSObject.h ├── NSObjectInvocation.h ├── NSPathUtilities.h ├── NSPort.h ├── NSPortCoder.h ├── NSPortMessage.h ├── NSPortNameServer.h ├── NSPosixFileDescriptor.h ├── NSPredicate.h ├── NSProcessInfo.h ├── NSProxy.h ├── NSRange.h ├── NSRunLoop.h ├── NSScanner.h ├── NSScriptKeyValueCoding.h ├── NSSerialization.h ├── NSSet.h ├── NSSortDescriptor.h ├── NSStream.h ├── NSString.h ├── NSTask.h ├── NSThread.h ├── NSTimeZone.h ├── NSTimer.h ├── NSURL.h ├── NSURLHandle.h ├── NSUndoManager.h ├── NSUserDefaults.h ├── NSUtilities.h ├── NSValue.h ├── NSValueExceptions.h ├── NSZone.h ├── PrivateThreadData.h ├── PropertyListParser.h ├── StackZone.h ├── StringExceptions.h ├── UnixSignalHandler.h ├── byte_order.h ├── common.h ├── config.h ├── cvtutf.h ├── exceptions │ ├── EncodingFormatExceptions.h │ ├── FoundationException.h │ ├── FoundationExceptions.h │ ├── GeneralExceptions.h │ ├── NSCoderExceptions.h │ ├── NSFileHandleExceptions.h │ ├── NSInvocationExceptions.h │ ├── NSValueExceptions.h │ └── StringExceptions.h ├── extensions │ ├── DefaultScannerHandler.h │ ├── FormatScanner.h │ ├── GCArray.h │ ├── GCDictionary.h │ ├── GCObject.h │ ├── GarbageCollector.h │ ├── NSException.h │ ├── PrintfFormatScanner.h │ ├── PrintfScannerHandler.h │ ├── encoding.h │ ├── exceptions │ │ ├── FoundationException.h │ │ ├── GeneralExceptions.h │ │ └── NSCoderExceptions.h │ ├── objc-runtime.h │ └── support.h ├── i386.h ├── lfmemory.h ├── linux-gnu.h ├── linux.h └── real_exception_file.h ├── INSTALL ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── aclocal.m4 ├── autom4te.cache ├── output.0 ├── output.1 ├── requests ├── traces.0 └── traces.1 ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── generators ├── NSConcreteNumber.m.sh └── lfmemory.h.in ├── install-sh ├── ltmain.sh ├── missing └── src ├── DefaultScannerHandler.m ├── EncodingFormatExceptions.m ├── FFCallInvocation.m ├── FormatScanner.m ├── FoundationException.m ├── GeneralExceptions.m ├── NSAccount.m ├── NSAllocDebugZone.m ├── NSArchiver.m ├── NSArray.m ├── NSAttributedString.m ├── NSAutoreleasePool.m ├── NSBundle.m ├── NSCalendarDate.m ├── NSCalendarDateScanf.m ├── NSCalendarDateScannerHandler.m ├── NSCharacterSet.m ├── NSClassDescription.m ├── NSCoder.m ├── NSCoderExceptions.m ├── NSComparisonPredicate.m ├── NSCompoundPredicate.m ├── NSConcreteArray.m ├── NSConcreteCharacterSet.m ├── NSConcreteData.m ├── NSConcreteDate.m ├── NSConcreteDictionary.m ├── NSConcreteFileHandle.m ├── NSConcreteMutableDictionary.m ├── NSConcreteMutableString.m ├── NSConcreteNumber.m ├── NSConcreteScanner.m ├── NSConcreteSet.m ├── NSConcreteString.m ├── NSConcreteTimeZone.m ├── NSConcreteTimeZoneDetail.m ├── NSConcreteUTF16String.m ├── NSConcreteUnixTask.m ├── NSConcreteValue.m ├── NSConcreteWindowsFileHandle.m ├── NSConcreteWindowsTask.m ├── NSConnection.m ├── NSData.m ├── NSDate.m ├── NSDateFormatter.m ├── NSDebug.m ├── NSDecimal.m ├── NSDecimalNumber.m ├── NSDefaultZone.m ├── NSDictionary.m ├── NSDistributedLock.m ├── NSDistributedNotificationCenter.m ├── NSEnumerator.m ├── NSError.m ├── NSException.m ├── NSExpression.m ├── NSFileHandle.m ├── NSFileHandleExceptions.m ├── NSFileManager.m ├── NSFileURLHandle.m ├── NSFormatter.m ├── NSFrameInvocation.m ├── NSGeometry.m ├── NSHashMap.m ├── NSHost.m ├── NSInputStream.m ├── NSInvocation.m ├── NSInvocationExceptions.m ├── NSLock.m ├── NSMappedData.m ├── NSMessagePort.m ├── NSMethodSignature.m ├── NSNotification.m ├── NSNotificationCenter.m ├── NSNotificationQueue.m ├── NSNull.m ├── NSNumber.m ├── NSNumberFormatter.m ├── NSObjCRuntime.m ├── NSObject.m ├── NSObjectAllocation.m ├── NSObjectInvocation.m ├── NSOutputStream.m ├── NSPathUtilities.m ├── NSPipe.m ├── NSPort.m ├── NSPortCoder.m ├── NSPortMessage.m ├── NSPortNameServer.m ├── NSPosixFileDescriptor.m ├── NSPredicate.m ├── NSPredicateParser.m ├── NSProcessInfo.m ├── NSProxy.m ├── NSRange.m ├── NSRunLoop.m ├── NSScanner.m ├── NSSerialization.m ├── NSSet.m ├── NSSocketPort.m ├── NSSortDescriptor.m ├── NSStream.m ├── NSString+StringEncoding.m ├── NSString.m ├── NSStringScanner.m ├── NSTask.m ├── NSThread.m ├── NSTimeZone.m ├── NSTimer.m ├── NSURL.m ├── NSURLHandle.m ├── NSUndoManager.m ├── NSUserDefaults.m ├── NSUtilities.m ├── NSVMPage.m ├── NSValue.m ├── NSValueExceptions.m ├── NSZone.m ├── PrintfFormatScanner.m ├── PrintfScannerHandler.m ├── PrivateThreadData.m ├── PropertyListParser.m ├── PropertyListParserUnichar.m ├── StackZone.m ├── StringExceptions.m ├── UnixSignalHandler.m ├── behavior.m ├── common.m ├── cvtutf.c ├── encoding.m ├── err.m ├── load.m ├── misc.m ├── objc-runtime.m ├── realpath.m ├── scanFloat.def ├── scanInt.def └── thr-mach.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Foundation/EncodingFormatExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/EncodingFormatExceptions.h -------------------------------------------------------------------------------- /Foundation/FFCallInvocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/FFCallInvocation.h -------------------------------------------------------------------------------- /Foundation/Foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/Foundation.h -------------------------------------------------------------------------------- /Foundation/FoundationException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/FoundationException.h -------------------------------------------------------------------------------- /Foundation/FoundationExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/FoundationExceptions.h -------------------------------------------------------------------------------- /Foundation/GeneralExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/GeneralExceptions.h -------------------------------------------------------------------------------- /Foundation/NSAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSAccount.h -------------------------------------------------------------------------------- /Foundation/NSAllocDebugZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSAllocDebugZone.h -------------------------------------------------------------------------------- /Foundation/NSArchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSArchiver.h -------------------------------------------------------------------------------- /Foundation/NSArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSArray.h -------------------------------------------------------------------------------- /Foundation/NSAttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSAttributedString.h -------------------------------------------------------------------------------- /Foundation/NSAutoreleasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSAutoreleasePool.h -------------------------------------------------------------------------------- /Foundation/NSBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSBundle.h -------------------------------------------------------------------------------- /Foundation/NSByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSByteOrder.h -------------------------------------------------------------------------------- /Foundation/NSCalendarDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSCalendarDate.h -------------------------------------------------------------------------------- /Foundation/NSCalendarDateScanf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSCalendarDateScanf.h -------------------------------------------------------------------------------- /Foundation/NSCalendarDateScannerHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSCalendarDateScannerHandler.h -------------------------------------------------------------------------------- /Foundation/NSCharacterSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSCharacterSet.h -------------------------------------------------------------------------------- /Foundation/NSClassDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSClassDescription.h -------------------------------------------------------------------------------- /Foundation/NSClassicException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSClassicException.h -------------------------------------------------------------------------------- /Foundation/NSCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSCoder.h -------------------------------------------------------------------------------- /Foundation/NSCoderExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSCoderExceptions.h -------------------------------------------------------------------------------- /Foundation/NSComparisonPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSComparisonPredicate.h -------------------------------------------------------------------------------- /Foundation/NSCompoundPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSCompoundPredicate.h -------------------------------------------------------------------------------- /Foundation/NSConcreteArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteArray.h -------------------------------------------------------------------------------- /Foundation/NSConcreteCharacterSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteCharacterSet.h -------------------------------------------------------------------------------- /Foundation/NSConcreteData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteData.h -------------------------------------------------------------------------------- /Foundation/NSConcreteDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteDate.h -------------------------------------------------------------------------------- /Foundation/NSConcreteDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteDictionary.h -------------------------------------------------------------------------------- /Foundation/NSConcreteFileHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteFileHandle.h -------------------------------------------------------------------------------- /Foundation/NSConcreteNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteNumber.h -------------------------------------------------------------------------------- /Foundation/NSConcreteScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteScanner.h -------------------------------------------------------------------------------- /Foundation/NSConcreteSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteSet.h -------------------------------------------------------------------------------- /Foundation/NSConcreteString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteString.h -------------------------------------------------------------------------------- /Foundation/NSConcreteTimeZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteTimeZone.h -------------------------------------------------------------------------------- /Foundation/NSConcreteTimeZoneDetail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteTimeZoneDetail.h -------------------------------------------------------------------------------- /Foundation/NSConcreteUnixTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteUnixTask.h -------------------------------------------------------------------------------- /Foundation/NSConcreteValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteValue.h -------------------------------------------------------------------------------- /Foundation/NSConcreteWindowsFileHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteWindowsFileHandle.h -------------------------------------------------------------------------------- /Foundation/NSConcreteWindowsTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConcreteWindowsTask.h -------------------------------------------------------------------------------- /Foundation/NSConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSConnection.h -------------------------------------------------------------------------------- /Foundation/NSData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSData.h -------------------------------------------------------------------------------- /Foundation/NSDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSDate.h -------------------------------------------------------------------------------- /Foundation/NSDateFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSDateFormatter.h -------------------------------------------------------------------------------- /Foundation/NSDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSDebug.h -------------------------------------------------------------------------------- /Foundation/NSDecimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSDecimal.h -------------------------------------------------------------------------------- /Foundation/NSDecimalNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSDecimalNumber.h -------------------------------------------------------------------------------- /Foundation/NSDefaultZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSDefaultZone.h -------------------------------------------------------------------------------- /Foundation/NSDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSDictionary.h -------------------------------------------------------------------------------- /Foundation/NSDistantObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSDistantObject.h -------------------------------------------------------------------------------- /Foundation/NSDistributedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSDistributedLock.h -------------------------------------------------------------------------------- /Foundation/NSDistributedNotificationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSDistributedNotificationCenter.h -------------------------------------------------------------------------------- /Foundation/NSEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSEnumerator.h -------------------------------------------------------------------------------- /Foundation/NSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSError.h -------------------------------------------------------------------------------- /Foundation/NSException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSException.h -------------------------------------------------------------------------------- /Foundation/NSExceptionWithoutNested.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSExceptionWithoutNested.h -------------------------------------------------------------------------------- /Foundation/NSExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSExpression.h -------------------------------------------------------------------------------- /Foundation/NSFileHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSFileHandle.h -------------------------------------------------------------------------------- /Foundation/NSFileHandleExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSFileHandleExceptions.h -------------------------------------------------------------------------------- /Foundation/NSFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSFileManager.h -------------------------------------------------------------------------------- /Foundation/NSFileURLHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSFileURLHandle.h -------------------------------------------------------------------------------- /Foundation/NSFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSFormatter.h -------------------------------------------------------------------------------- /Foundation/NSFrameInvocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSFrameInvocation.h -------------------------------------------------------------------------------- /Foundation/NSFuncallException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSFuncallException.h -------------------------------------------------------------------------------- /Foundation/NSGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSGeometry.h -------------------------------------------------------------------------------- /Foundation/NSHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSHashTable.h -------------------------------------------------------------------------------- /Foundation/NSHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSHost.h -------------------------------------------------------------------------------- /Foundation/NSInvocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSInvocation.h -------------------------------------------------------------------------------- /Foundation/NSInvocationExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSInvocationExceptions.h -------------------------------------------------------------------------------- /Foundation/NSKeyValueCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSKeyValueCoding.h -------------------------------------------------------------------------------- /Foundation/NSLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSLock.h -------------------------------------------------------------------------------- /Foundation/NSMapTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSMapTable.h -------------------------------------------------------------------------------- /Foundation/NSMappedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSMappedData.h -------------------------------------------------------------------------------- /Foundation/NSMethodSignature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSMethodSignature.h -------------------------------------------------------------------------------- /Foundation/NSNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSNotification.h -------------------------------------------------------------------------------- /Foundation/NSNotificationQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSNotificationQueue.h -------------------------------------------------------------------------------- /Foundation/NSNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSNull.h -------------------------------------------------------------------------------- /Foundation/NSNumberFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSNumberFormatter.h -------------------------------------------------------------------------------- /Foundation/NSObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSObjCRuntime.h -------------------------------------------------------------------------------- /Foundation/NSObject+PropLists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSObject+PropLists.h -------------------------------------------------------------------------------- /Foundation/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSObject.h -------------------------------------------------------------------------------- /Foundation/NSObjectInvocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSObjectInvocation.h -------------------------------------------------------------------------------- /Foundation/NSPathUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSPathUtilities.h -------------------------------------------------------------------------------- /Foundation/NSPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSPort.h -------------------------------------------------------------------------------- /Foundation/NSPortCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSPortCoder.h -------------------------------------------------------------------------------- /Foundation/NSPortMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSPortMessage.h -------------------------------------------------------------------------------- /Foundation/NSPortNameServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSPortNameServer.h -------------------------------------------------------------------------------- /Foundation/NSPosixFileDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSPosixFileDescriptor.h -------------------------------------------------------------------------------- /Foundation/NSPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSPredicate.h -------------------------------------------------------------------------------- /Foundation/NSProcessInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSProcessInfo.h -------------------------------------------------------------------------------- /Foundation/NSProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSProxy.h -------------------------------------------------------------------------------- /Foundation/NSRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSRange.h -------------------------------------------------------------------------------- /Foundation/NSRunLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSRunLoop.h -------------------------------------------------------------------------------- /Foundation/NSScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSScanner.h -------------------------------------------------------------------------------- /Foundation/NSScriptKeyValueCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSScriptKeyValueCoding.h -------------------------------------------------------------------------------- /Foundation/NSSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSSerialization.h -------------------------------------------------------------------------------- /Foundation/NSSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSSet.h -------------------------------------------------------------------------------- /Foundation/NSSortDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSSortDescriptor.h -------------------------------------------------------------------------------- /Foundation/NSStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSStream.h -------------------------------------------------------------------------------- /Foundation/NSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSString.h -------------------------------------------------------------------------------- /Foundation/NSTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSTask.h -------------------------------------------------------------------------------- /Foundation/NSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSThread.h -------------------------------------------------------------------------------- /Foundation/NSTimeZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSTimeZone.h -------------------------------------------------------------------------------- /Foundation/NSTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSTimer.h -------------------------------------------------------------------------------- /Foundation/NSURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSURL.h -------------------------------------------------------------------------------- /Foundation/NSURLHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSURLHandle.h -------------------------------------------------------------------------------- /Foundation/NSUndoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSUndoManager.h -------------------------------------------------------------------------------- /Foundation/NSUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSUserDefaults.h -------------------------------------------------------------------------------- /Foundation/NSUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSUtilities.h -------------------------------------------------------------------------------- /Foundation/NSValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSValue.h -------------------------------------------------------------------------------- /Foundation/NSValueExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSValueExceptions.h -------------------------------------------------------------------------------- /Foundation/NSZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/NSZone.h -------------------------------------------------------------------------------- /Foundation/PrivateThreadData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/PrivateThreadData.h -------------------------------------------------------------------------------- /Foundation/PropertyListParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/PropertyListParser.h -------------------------------------------------------------------------------- /Foundation/StackZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/StackZone.h -------------------------------------------------------------------------------- /Foundation/StringExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/StringExceptions.h -------------------------------------------------------------------------------- /Foundation/UnixSignalHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/UnixSignalHandler.h -------------------------------------------------------------------------------- /Foundation/byte_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/byte_order.h -------------------------------------------------------------------------------- /Foundation/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/common.h -------------------------------------------------------------------------------- /Foundation/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/config.h -------------------------------------------------------------------------------- /Foundation/cvtutf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/cvtutf.h -------------------------------------------------------------------------------- /Foundation/exceptions/EncodingFormatExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/exceptions/EncodingFormatExceptions.h -------------------------------------------------------------------------------- /Foundation/exceptions/FoundationException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/exceptions/FoundationException.h -------------------------------------------------------------------------------- /Foundation/exceptions/FoundationExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/exceptions/FoundationExceptions.h -------------------------------------------------------------------------------- /Foundation/exceptions/GeneralExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/exceptions/GeneralExceptions.h -------------------------------------------------------------------------------- /Foundation/exceptions/NSCoderExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/exceptions/NSCoderExceptions.h -------------------------------------------------------------------------------- /Foundation/exceptions/NSFileHandleExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/exceptions/NSFileHandleExceptions.h -------------------------------------------------------------------------------- /Foundation/exceptions/NSInvocationExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/exceptions/NSInvocationExceptions.h -------------------------------------------------------------------------------- /Foundation/exceptions/NSValueExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/exceptions/NSValueExceptions.h -------------------------------------------------------------------------------- /Foundation/exceptions/StringExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/exceptions/StringExceptions.h -------------------------------------------------------------------------------- /Foundation/extensions/DefaultScannerHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/DefaultScannerHandler.h -------------------------------------------------------------------------------- /Foundation/extensions/FormatScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/FormatScanner.h -------------------------------------------------------------------------------- /Foundation/extensions/GCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/GCArray.h -------------------------------------------------------------------------------- /Foundation/extensions/GCDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/GCDictionary.h -------------------------------------------------------------------------------- /Foundation/extensions/GCObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/GCObject.h -------------------------------------------------------------------------------- /Foundation/extensions/GarbageCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/GarbageCollector.h -------------------------------------------------------------------------------- /Foundation/extensions/NSException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/NSException.h -------------------------------------------------------------------------------- /Foundation/extensions/PrintfFormatScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/PrintfFormatScanner.h -------------------------------------------------------------------------------- /Foundation/extensions/PrintfScannerHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/PrintfScannerHandler.h -------------------------------------------------------------------------------- /Foundation/extensions/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/encoding.h -------------------------------------------------------------------------------- /Foundation/extensions/exceptions/FoundationException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/exceptions/FoundationException.h -------------------------------------------------------------------------------- /Foundation/extensions/exceptions/GeneralExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/exceptions/GeneralExceptions.h -------------------------------------------------------------------------------- /Foundation/extensions/exceptions/NSCoderExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/exceptions/NSCoderExceptions.h -------------------------------------------------------------------------------- /Foundation/extensions/objc-runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/objc-runtime.h -------------------------------------------------------------------------------- /Foundation/extensions/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/extensions/support.h -------------------------------------------------------------------------------- /Foundation/i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/i386.h -------------------------------------------------------------------------------- /Foundation/lfmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/lfmemory.h -------------------------------------------------------------------------------- /Foundation/linux-gnu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/linux-gnu.h -------------------------------------------------------------------------------- /Foundation/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/linux.h -------------------------------------------------------------------------------- /Foundation/real_exception_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Foundation/real_exception_file.h -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/README -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/autom4te.cache/output.0 -------------------------------------------------------------------------------- /autom4te.cache/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/autom4te.cache/output.1 -------------------------------------------------------------------------------- /autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/autom4te.cache/requests -------------------------------------------------------------------------------- /autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /autom4te.cache/traces.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/autom4te.cache/traces.1 -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/config.guess -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/depcomp -------------------------------------------------------------------------------- /generators/NSConcreteNumber.m.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/generators/NSConcreteNumber.m.sh -------------------------------------------------------------------------------- /generators/lfmemory.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/generators/lfmemory.h.in -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/install-sh -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/ltmain.sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/missing -------------------------------------------------------------------------------- /src/DefaultScannerHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/DefaultScannerHandler.m -------------------------------------------------------------------------------- /src/EncodingFormatExceptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/EncodingFormatExceptions.m -------------------------------------------------------------------------------- /src/FFCallInvocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/FFCallInvocation.m -------------------------------------------------------------------------------- /src/FormatScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/FormatScanner.m -------------------------------------------------------------------------------- /src/FoundationException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/FoundationException.m -------------------------------------------------------------------------------- /src/GeneralExceptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/GeneralExceptions.m -------------------------------------------------------------------------------- /src/NSAccount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSAccount.m -------------------------------------------------------------------------------- /src/NSAllocDebugZone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSAllocDebugZone.m -------------------------------------------------------------------------------- /src/NSArchiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSArchiver.m -------------------------------------------------------------------------------- /src/NSArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSArray.m -------------------------------------------------------------------------------- /src/NSAttributedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSAttributedString.m -------------------------------------------------------------------------------- /src/NSAutoreleasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSAutoreleasePool.m -------------------------------------------------------------------------------- /src/NSBundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSBundle.m -------------------------------------------------------------------------------- /src/NSCalendarDate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSCalendarDate.m -------------------------------------------------------------------------------- /src/NSCalendarDateScanf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSCalendarDateScanf.m -------------------------------------------------------------------------------- /src/NSCalendarDateScannerHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSCalendarDateScannerHandler.m -------------------------------------------------------------------------------- /src/NSCharacterSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSCharacterSet.m -------------------------------------------------------------------------------- /src/NSClassDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSClassDescription.m -------------------------------------------------------------------------------- /src/NSCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSCoder.m -------------------------------------------------------------------------------- /src/NSCoderExceptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSCoderExceptions.m -------------------------------------------------------------------------------- /src/NSComparisonPredicate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSComparisonPredicate.m -------------------------------------------------------------------------------- /src/NSCompoundPredicate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSCompoundPredicate.m -------------------------------------------------------------------------------- /src/NSConcreteArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteArray.m -------------------------------------------------------------------------------- /src/NSConcreteCharacterSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteCharacterSet.m -------------------------------------------------------------------------------- /src/NSConcreteData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteData.m -------------------------------------------------------------------------------- /src/NSConcreteDate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteDate.m -------------------------------------------------------------------------------- /src/NSConcreteDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteDictionary.m -------------------------------------------------------------------------------- /src/NSConcreteFileHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteFileHandle.m -------------------------------------------------------------------------------- /src/NSConcreteMutableDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteMutableDictionary.m -------------------------------------------------------------------------------- /src/NSConcreteMutableString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteMutableString.m -------------------------------------------------------------------------------- /src/NSConcreteNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteNumber.m -------------------------------------------------------------------------------- /src/NSConcreteScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteScanner.m -------------------------------------------------------------------------------- /src/NSConcreteSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteSet.m -------------------------------------------------------------------------------- /src/NSConcreteString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteString.m -------------------------------------------------------------------------------- /src/NSConcreteTimeZone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteTimeZone.m -------------------------------------------------------------------------------- /src/NSConcreteTimeZoneDetail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteTimeZoneDetail.m -------------------------------------------------------------------------------- /src/NSConcreteUTF16String.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteUTF16String.m -------------------------------------------------------------------------------- /src/NSConcreteUnixTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteUnixTask.m -------------------------------------------------------------------------------- /src/NSConcreteValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteValue.m -------------------------------------------------------------------------------- /src/NSConcreteWindowsFileHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteWindowsFileHandle.m -------------------------------------------------------------------------------- /src/NSConcreteWindowsTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConcreteWindowsTask.m -------------------------------------------------------------------------------- /src/NSConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSConnection.m -------------------------------------------------------------------------------- /src/NSData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSData.m -------------------------------------------------------------------------------- /src/NSDate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSDate.m -------------------------------------------------------------------------------- /src/NSDateFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSDateFormatter.m -------------------------------------------------------------------------------- /src/NSDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSDebug.m -------------------------------------------------------------------------------- /src/NSDecimal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSDecimal.m -------------------------------------------------------------------------------- /src/NSDecimalNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSDecimalNumber.m -------------------------------------------------------------------------------- /src/NSDefaultZone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSDefaultZone.m -------------------------------------------------------------------------------- /src/NSDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSDictionary.m -------------------------------------------------------------------------------- /src/NSDistributedLock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSDistributedLock.m -------------------------------------------------------------------------------- /src/NSDistributedNotificationCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSDistributedNotificationCenter.m -------------------------------------------------------------------------------- /src/NSEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSEnumerator.m -------------------------------------------------------------------------------- /src/NSError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSError.m -------------------------------------------------------------------------------- /src/NSException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSException.m -------------------------------------------------------------------------------- /src/NSExpression.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSExpression.m -------------------------------------------------------------------------------- /src/NSFileHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSFileHandle.m -------------------------------------------------------------------------------- /src/NSFileHandleExceptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSFileHandleExceptions.m -------------------------------------------------------------------------------- /src/NSFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSFileManager.m -------------------------------------------------------------------------------- /src/NSFileURLHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSFileURLHandle.m -------------------------------------------------------------------------------- /src/NSFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSFormatter.m -------------------------------------------------------------------------------- /src/NSFrameInvocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSFrameInvocation.m -------------------------------------------------------------------------------- /src/NSGeometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSGeometry.m -------------------------------------------------------------------------------- /src/NSHashMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSHashMap.m -------------------------------------------------------------------------------- /src/NSHost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSHost.m -------------------------------------------------------------------------------- /src/NSInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSInputStream.m -------------------------------------------------------------------------------- /src/NSInvocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSInvocation.m -------------------------------------------------------------------------------- /src/NSInvocationExceptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSInvocationExceptions.m -------------------------------------------------------------------------------- /src/NSLock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSLock.m -------------------------------------------------------------------------------- /src/NSMappedData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSMappedData.m -------------------------------------------------------------------------------- /src/NSMessagePort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSMessagePort.m -------------------------------------------------------------------------------- /src/NSMethodSignature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSMethodSignature.m -------------------------------------------------------------------------------- /src/NSNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSNotification.m -------------------------------------------------------------------------------- /src/NSNotificationCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSNotificationCenter.m -------------------------------------------------------------------------------- /src/NSNotificationQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSNotificationQueue.m -------------------------------------------------------------------------------- /src/NSNull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSNull.m -------------------------------------------------------------------------------- /src/NSNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSNumber.m -------------------------------------------------------------------------------- /src/NSNumberFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSNumberFormatter.m -------------------------------------------------------------------------------- /src/NSObjCRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSObjCRuntime.m -------------------------------------------------------------------------------- /src/NSObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSObject.m -------------------------------------------------------------------------------- /src/NSObjectAllocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSObjectAllocation.m -------------------------------------------------------------------------------- /src/NSObjectInvocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSObjectInvocation.m -------------------------------------------------------------------------------- /src/NSOutputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSOutputStream.m -------------------------------------------------------------------------------- /src/NSPathUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSPathUtilities.m -------------------------------------------------------------------------------- /src/NSPipe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSPipe.m -------------------------------------------------------------------------------- /src/NSPort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSPort.m -------------------------------------------------------------------------------- /src/NSPortCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSPortCoder.m -------------------------------------------------------------------------------- /src/NSPortMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSPortMessage.m -------------------------------------------------------------------------------- /src/NSPortNameServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSPortNameServer.m -------------------------------------------------------------------------------- /src/NSPosixFileDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSPosixFileDescriptor.m -------------------------------------------------------------------------------- /src/NSPredicate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSPredicate.m -------------------------------------------------------------------------------- /src/NSPredicateParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSPredicateParser.m -------------------------------------------------------------------------------- /src/NSProcessInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSProcessInfo.m -------------------------------------------------------------------------------- /src/NSProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSProxy.m -------------------------------------------------------------------------------- /src/NSRange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSRange.m -------------------------------------------------------------------------------- /src/NSRunLoop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSRunLoop.m -------------------------------------------------------------------------------- /src/NSScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSScanner.m -------------------------------------------------------------------------------- /src/NSSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSSerialization.m -------------------------------------------------------------------------------- /src/NSSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSSet.m -------------------------------------------------------------------------------- /src/NSSocketPort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSSocketPort.m -------------------------------------------------------------------------------- /src/NSSortDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSSortDescriptor.m -------------------------------------------------------------------------------- /src/NSStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSStream.m -------------------------------------------------------------------------------- /src/NSString+StringEncoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSString+StringEncoding.m -------------------------------------------------------------------------------- /src/NSString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSString.m -------------------------------------------------------------------------------- /src/NSStringScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSStringScanner.m -------------------------------------------------------------------------------- /src/NSTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSTask.m -------------------------------------------------------------------------------- /src/NSThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSThread.m -------------------------------------------------------------------------------- /src/NSTimeZone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSTimeZone.m -------------------------------------------------------------------------------- /src/NSTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSTimer.m -------------------------------------------------------------------------------- /src/NSURL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSURL.m -------------------------------------------------------------------------------- /src/NSURLHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSURLHandle.m -------------------------------------------------------------------------------- /src/NSUndoManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSUndoManager.m -------------------------------------------------------------------------------- /src/NSUserDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSUserDefaults.m -------------------------------------------------------------------------------- /src/NSUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSUtilities.m -------------------------------------------------------------------------------- /src/NSVMPage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSVMPage.m -------------------------------------------------------------------------------- /src/NSValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSValue.m -------------------------------------------------------------------------------- /src/NSValueExceptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSValueExceptions.m -------------------------------------------------------------------------------- /src/NSZone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/NSZone.m -------------------------------------------------------------------------------- /src/PrintfFormatScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/PrintfFormatScanner.m -------------------------------------------------------------------------------- /src/PrintfScannerHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/PrintfScannerHandler.m -------------------------------------------------------------------------------- /src/PrivateThreadData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/PrivateThreadData.m -------------------------------------------------------------------------------- /src/PropertyListParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/PropertyListParser.m -------------------------------------------------------------------------------- /src/PropertyListParserUnichar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/PropertyListParserUnichar.m -------------------------------------------------------------------------------- /src/StackZone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/StackZone.m -------------------------------------------------------------------------------- /src/StringExceptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/StringExceptions.m -------------------------------------------------------------------------------- /src/UnixSignalHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/UnixSignalHandler.m -------------------------------------------------------------------------------- /src/behavior.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/behavior.m -------------------------------------------------------------------------------- /src/common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/common.m -------------------------------------------------------------------------------- /src/cvtutf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/cvtutf.c -------------------------------------------------------------------------------- /src/encoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/encoding.m -------------------------------------------------------------------------------- /src/err.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/err.m -------------------------------------------------------------------------------- /src/load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/load.m -------------------------------------------------------------------------------- /src/misc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/misc.m -------------------------------------------------------------------------------- /src/objc-runtime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/objc-runtime.m -------------------------------------------------------------------------------- /src/realpath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/realpath.m -------------------------------------------------------------------------------- /src/scanFloat.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/scanFloat.def -------------------------------------------------------------------------------- /src/scanInt.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/scanInt.def -------------------------------------------------------------------------------- /src/thr-mach.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timburks/nufound/HEAD/src/thr-mach.m --------------------------------------------------------------------------------