mailing list of musl libc
 help / color / mirror / code / Atom feed
0be566659accd7149ee9d23658bdf51c2f8cd603 blob 815 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
 
#include "stdio_impl.h"
#include "locale_impl.h"
#include <wchar.h>
#include <limits.h>
#include <ctype.h>

wint_t __fputwc_unlocked(wchar_t c, FILE *f)
{
	char mbc[MB_LEN_MAX];
	int l;
	locale_t *ploc = &CURRENT_LOCALE, loc = *ploc;

	if (f->mode <= 0) fwide(f, 1);
	*ploc = f->locale;

	if (isascii(c)) {
		c = putc_unlocked(c, f);
	} else if (f->wpos + MB_LEN_MAX < f->wend) {
		l = wctomb((void *)f->wpos, c);
		if (l < 0) c = WEOF;
		else f->wpos += l;
	} else {
		l = wctomb(mbc, c);
		if (l < 0 || __fwritex((void *)mbc, l, f) < l)
			c = WEOF;
	}
	if (c==WEOF) f->flags |= F_ERR;
	*ploc = loc;
	return c;
}

wint_t fputwc(wchar_t c, FILE *f)
{
	FLOCK(f);
	c = __fputwc_unlocked(c, f);
	FUNLOCK(f);
	return c;
}

weak_alias(__fputwc_unlocked, fputwc_unlocked);
weak_alias(__fputwc_unlocked, putwc_unlocked);
debug log:

solving 0be5666 ...
found 0be5666 in https://inbox.vuxu.org/musl/20150613070655.GJ17573@brightrain.aerifal.cx/
found 1bf165b in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 1bf165bfb850fa14d6a4a70fbed81b6ba773dc32	src/stdio/fputwc.c

applying [1/1] https://inbox.vuxu.org/musl/20150613070655.GJ17573@brightrain.aerifal.cx/
diff --git a/src/stdio/fputwc.c b/src/stdio/fputwc.c
index 1bf165b..0be5666 100644

Checking patch src/stdio/fputwc.c...
Applied patch src/stdio/fputwc.c cleanly.

index at:
100644 0be566659accd7149ee9d23658bdf51c2f8cd603	src/stdio/fputwc.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).