@@ -89,6 +89,23 @@ { [[OFNotImplementedException newWithObject: self andSelector: @selector(append:)] raise]; return nil; } + +- (OFString*)appendCString: (const char*)str +{ + [[OFNotImplementedException newWithObject: self + andSelector: @selector(appendCString:)] + raise]; + return nil; +} + +- (OFString*)appendWideCString: (const char*)str +{ + [[OFNotImplementedException newWithObject: self + andSelector: @selector( + appendWideCString:)] + raise]; + return nil; +} @end