1
0
Fork 0
libfort/src/wcwidth.h

15 lines
215 B
C
Raw Normal View History

2018-03-21 18:46:27 +01:00
#ifndef WCWIDTH_H
#define WCWIDTH_H
2018-08-31 19:17:10 +02:00
#include "fort_utils.h"
2018-03-21 18:46:27 +01:00
2018-08-31 19:17:10 +02:00
#ifdef FT_HAVE_WCHAR
#include <wchar.h>
FT_INTERNAL
2018-03-21 18:46:27 +01:00
int mk_wcswidth(const wchar_t *pwcs, size_t n);
2018-08-31 19:17:10 +02:00
#endif /* FT_HAVE_WCHAR */
#endif /* WCWIDTH_H */