#ifndef __safeString_h__ #define __safeString_h__ /* A nice, safe string */ typedef struct { int sz; //number of bytes char *bytes; //the bytes } safeString; #endif