ciabatta/inc/types/mbstate.h

12 lines
165 B
C
Raw Normal View History

2022-07-24 15:57:12 +00:00
#pragma once
typedef struct mbstate_t mbstate_t;
struct mbstate_t {
union {
unsigned short leftover;
unsigned short high_surrogate;
2022-07-24 15:57:12 +00:00
};
};