(mutableCopy): New method.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@132 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1995-03-17 16:10:05 +00:00
parent 74a3bb4f3e
commit 6feb89546b

View file

@ -255,7 +255,12 @@
- copy
{
return [[[self class] alloc] initWithCString:[self cString]];
return [[[self class] alloc] initWithString:self];
}
- mutableCopy
{
return [[MutableCString alloc] initWithString:self];
}
// TESTING;