ftp.nice.ch/Attic/openStep/developer/bundles/GDBbundle.1.0.s.tgz#/GDBbundle-1.0.s/TextEdit/GdbBundle.bproj/NSScannerAddition.m

This is NSScannerAddition.m in view mode; [Download] [Up]

/* NSScannerAddition.m created by ovidiu on Sun 23-Mar-1997 */

#import "NSScannerAddition.h"

@implementation NSScanner (NSScannerAddition)

- (BOOL)scanAfterString:(NSString*)string
{
  [self scanUpToString:string intoString:NULL];
  if ([self isAtEnd])
    return NO;
  if (![self scanString:string intoString:NULL])
    return NO;
  return YES;
}

@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.