Sha256: bbb3c08fc603c1a763b9b232c51cc109147a68462f8707e8bbadf159001c9a8e

Contents?: true

Size: 987 Bytes

Versions: 8

Compression:

Stored size: 987 Bytes

Contents

/* 
 * This code was written by Rich Felker in 2010; no copyright is claimed.
 * This code is in the public domain. Attribution is appreciated but
 * unnecessary.
 */

#include <stdlib.h>
#include <inttypes.h>
#include <wchar.h>
#include <errno.h>

#include "internal.h"

size_t wcsnrtombs(char *restrict dst, const wchar_t **restrict wcs, size_t wn, size_t n, mbstate_t *restrict st)
{
	size_t l, cnt=0, n2;
	char *s, buf[256];
	const wchar_t *ws = *wcs;

	if (!dst) s = buf, n = sizeof buf;
	else s = dst;

	while ( ws && n && ( (n2=wn)>=n || n2>32 ) ) {
		if (n2>=n) n2=n;
		wn -= n2;
		l = wcsrtombs(s, &ws, n2, 0);
		if (!(l+1)) {
			cnt = l;
			n = 0;
			break;
		}
		if (s != buf) {
			s += l;
			n -= l;
		}
		cnt += l;
	}
	if (ws) while (n && wn) {
		l = wcrtomb(s, *ws, 0);
		if ((l+1)<=1) {
			if (!l) ws = 0;
			else cnt = l;
			break;
		}
		ws++; wn--;
		/* safe - this loop runs fewer than sizeof(buf) times */
		s+=l; n-=l;
		cnt++;
	}
	if (dst) *wcs = ws;
	return cnt;
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
webruby-0.2.7 modules/emscripten/system/lib/libc/musl/src/multibyte/wcsnrtombs.c
webruby-0.2.5 modules/emscripten/system/lib/libc/musl/src/multibyte/wcsnrtombs.c
webruby-0.2.4 modules/emscripten/system/lib/libc/musl/src/multibyte/wcsnrtombs.c
webruby-0.2.2 modules/emscripten/system/lib/libc/musl/src/multibyte/wcsnrtombs.c
webruby-0.2.1 modules/emscripten/system/lib/libc/musl/src/multibyte/wcsnrtombs.c
webruby-0.1.2 modules/emscripten/system/lib/libc/musl/src/multibyte/wcsnrtombs.c
webruby-0.1.1 modules/emscripten/system/lib/libc/musl/src/multibyte/wcsnrtombs.c
webruby-0.1.0 modules/emscripten/system/lib/libc/musl/src/multibyte/wcsnrtombs.c