blob: 2bfb3eb63ac53e3614c3012e253e4b642b24b3a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MLIBC_MBSTATE_H
#define MLIBC_MBSTATE_H
struct __mlibc_mbstate {
short __progress;
short __shift;
unsigned int __cpoint;
};
#define __MLIBC_MBSTATE_INITIALIZER {0, 0, 0}
#endif // MLIBC_MBSTATE_H
|