Changes by wacko@power1.snu.ac.kr (Yoo C. Chung). See ChangeLog Jan 20

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2202 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1997-03-03 19:46:52 +00:00
parent af908b993e
commit c07f920c70
7 changed files with 103 additions and 42 deletions

View file

@ -247,6 +247,7 @@ static Class NSMutableData_concrete_class;
char *dest;
int length = [self length];
int i,j;
id ret;
#define num2char(num) ((num) < 0xa ? ((num)+'0') : ((num)+0x57))
@ -263,7 +264,9 @@ static Class NSMutableData_concrete_class;
}
dest[j++] = '>';
dest[j] = '\0';
return [NSString stringWithCString: dest];
ret = [NSString stringWithCString: dest];
free(dest);
return ret;
}
- (void)getBytes: (void*)buffer