blob: e898758f514892295793c1eae98a628068beee5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef STRING_H
# define STRING_H
#include <Object.h>
@interface String: Object
{
char *data;
int len;
}
-init;
-free;
-setStr: (const char *)stringData withLength: (int)length;
-setStr: (const char *)stringData;
-(int)getLen;
-(char *)getStr;
@end
#endif
|