Substitute (NSString*) for (id <String>)

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1945 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1996-11-24 17:30:39 +00:00
parent 182592f4a1
commit 7202be0561
34 changed files with 212 additions and 212 deletions

View file

@ -182,7 +182,7 @@ static BOOL debug_memory_stream = NO;
return l;
}
- (id <String>) readLine
- (NSString*) readLine
{
char *nl = memchr(buffer+prefix+position, '\n', eof_position-position);
char *ret = NULL;
@ -224,7 +224,7 @@ void unchar_func(void *s, int c)
}
#if HAVE_VSPRINTF
- (int) writeFormat: (id <String>)format
- (int) writeFormat: (NSString*)format
arguments: (va_list)arg
{
int ret;
@ -256,7 +256,7 @@ void unchar_func(void *s, int c)
}
#endif
- (int) readFormat: (id <String>)format, ...
- (int) readFormat: (NSString*)format, ...
{
int ret;
va_list ap;