blob: 116231c170437dbe2a3c3c27824f1af4ce06dd15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef MLIB_MBIO_H
#define MLIB_MBIO_H
#include <stdio.h>
#include "_charN_t.h"
#include "_rune.h"
int u8fgetr(rune *, FILE *);
constexpr rune MBEOF = 0x110000;
#endif /* !MLIB_MBIO_H */
|