blob: 80e703b5cff3c3dba5a9608041842ce836286c0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef MLIB_MBIOO_H
#define MLIB_MBIOO_H
#include <stdio.h>
#include "__charN_t.h"
#include "__rune.h"
int freadrune(rune *, FILE *);
constexpr rune MBEOF = 0x110000;
constexpr rune MBERR = 0x110001;
#endif /* !MLIB_MBIOO_H */
|