diff options
| author | Jakob Kaivo <jkk@ung.org> | 2020-08-16 15:47:08 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2020-08-16 15:47:08 -0400 |
| commit | 700fbd205a1a428677876d322606b9a354221892 (patch) | |
| tree | c1a521f3a2ea0346f293a543a9ed4ef6c1242b77 /src/uchar/c32rtomb.c | |
| parent | d36c832edee04db91e0c0ab635980c63844ca07c (diff) | |
add skeleton of things from C11
Diffstat (limited to 'src/uchar/c32rtomb.c')
| -rw-r--r-- | src/uchar/c32rtomb.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/uchar/c32rtomb.c b/src/uchar/c32rtomb.c new file mode 100644 index 00000000..6fc5ec7e --- /dev/null +++ b/src/uchar/c32rtomb.c @@ -0,0 +1,10 @@ +#include <uchar.h> + +size_t c32rtomb(char * restrict s, char32_t c32, mbstate_t * restrict ps) +{ + return 0; +} + +/* +STDC(201112) +*/ |
