]> git.draconx.ca Git - dxcommon.git/blob - t/nls/mbswidth.h
help_print_optstring: Test fullwidth/halfwidth character output.
[dxcommon.git] / t / nls / mbswidth.h
1 /*
2  * Copyright © 2023 Nick Bowler
3  *
4  * Simplified mbsnwidth for test purposes.
5  *
6  * License WTFPL2: Do What The Fuck You Want To Public License, version 2.
7  * This is free software: you are free to do what the fuck you want to.
8  * There is NO WARRANTY, to the extent permitted by law.
9  */
10
11 #ifndef TEST_NLS_MBSWIDTH_H_
12 #define TEST_NLS_MBSWIDTH_H_
13
14 #include <stddef.h>
15
16 int mbsnwidth(const char *buf, size_t n, int flags);
17
18 #endif