This is SimpleString.h in view mode; [Download] [Up]
/* -*-C-*- ******************************************************************************* * * File: SimpleString.h * RCS: $Header: /usr/local/lib/cvs/EnhanceMail/SimpleString.h,v 1.1.1.3 1996/06/23 16:10:10 cedman Exp $ * Description: * Author: Carl Edman * Created: Tue Oct 17 23:45:19 1995 * Modified: Sat Jun 22 19:07:04 1996 (Carl Edman) cedman@capitalist.princeton.edu * Language: C * Package: N/A * Status: Experimental (Do Not Distribute) * * (C) Copyright 1995, but otherwise this file is perfect freeware. * ******************************************************************************* */ #import <appkit/appkit.h> @interface SimpleString:Object { char *data; char *cur; } - init; - free; - grow; - (char *)string; - (int)length; - empty; - (int)appendChar:(char)c; - (int)appendString:(const char *)str; - (int)appendString:(const char *)str length:(int)len; - (int)appendStream:(NXStream *)s; - (int)appendFile:(int)fd; - (int)writeFile:(int)fd; - (int)appendSimpleString:(id)sstr; - (int)includeSimpleString:(id)sstr; - (int)lastChar; @end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.