15 lines
227 B
C
15 lines
227 B
C
#ifndef _STRING_H_
|
|
#define _STRING_H_
|
|
|
|
#define MAX_STRING_LENGTH 256
|
|
|
|
typedef struct
|
|
{
|
|
int refcount;
|
|
char data[MAX_STRING_LENGTH];
|
|
} string;
|
|
|
|
void string_initialize(string *obj, char *init);
|
|
|
|
#endif //_STRING_H_
|