/* * $Id$ */ #ifndef str_h #define str_h struct _str{ char* s; /* null terminated string*/ int len; /*string len*/ }; typedef struct _str str; #endif