#ifndef STRING_H
#define STRING_H

#include <objc/Object.h>

@interface String : Object
{
	char *string;
	int len;
}

- init;
- init:(const char *)str;
- free;
- (const char *)cat:(const char *)str;
- (const char *)c_str;
- set:(const char *);

@end

#endif

