00001 #ifndef STRING_H 00002 #define STRING_H 1 00003 #include "../error/error.h" 00004 #include "Object.h" 00005 00006 extern const struct String *String ; 00007 extern int nps_initString(nps_error_t *); 00008 extern struct String *String_copy(struct String *, nps_error_t *error); 00009 extern char *String_getTxt(struct String *); 00010 00011 00012 #endif