#ifndef _STR_H_ #define _STR_H_ struct _str { char *s; int len; }; typedef struct _str str; #endif