Make another couple of functions truly private

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23922 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2006-10-20 12:57:59 +00:00
parent 0ebe68ae48
commit 2e258c4d7c
4 changed files with 33 additions and 20 deletions

View file

@ -5007,7 +5007,8 @@ NSAssert(_flags.free == 1 && _zone != 0, NSInternalInconsistencyException);
/**
* Append characters to a string.
*/
void GSStrAppendUnichars(GSStr s, const unichar *u, unsigned l)
void
GSPrivateStrAppendUnichars(GSStr s, const unichar *u, unsigned l)
{
/*
* Make the string wide if necessary.
@ -5080,7 +5081,8 @@ void GSStrAppendUnichars(GSStr s, const unichar *u, unsigned l)
}
void GSStrExternalize(GSStr s)
void
GSPrivateStrExternalize(GSStr s)
{
if (s->_flags.wide == 0 && internalEncoding != externalEncoding)
{