1 2 3 4 5 6 7 8 9 10 11
/* $FreeBSD$ */ #ifndef MB_CACHE_DEFINED #define MB_CACHE_DEFINED struct mb_cache { size_t len; const char *orig_buf; /* not the only reference; do not free */ wchar_t *wcs_buf; unsigned char *mblen_buf; }; #endif