ungetwc.c\stdio\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stdio/ungetwc.c
blob: 9edf366f90d5ce07d6c7ed3ff448981c66ddefd9 (plain) (blame)
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
#include "stdio_impl.h"
#include "locale_impl.h"
#include <wchar.h>
#include <limits.h>
#include <ctype.h>
#include <string.h>
wint_t ungetwc(wint_t c, FILE *f)
{
	unsigned char mbc[MB_LEN_MAX];
	int l;
	locale_t *ploc = &CURRENT_LOCALE, loc = *ploc;
	FLOCK(f);
	if (f->mode <= 0) fwide(f, 1);
	*ploc = f->locale;
	if (!f->rpos) __toread(f);
	if (!f->rpos || c == WEOF || (l = wcrtomb((void *)mbc, c, 0)) < 0 ||
	 f->rpos < f->buf - UNGET + l) {
		FUNLOCK(f);
		*ploc = loc;
		return WEOF;
	}
	if (isascii(c)) *--f->rpos = c;
	else memcpy(f->rpos -= l, mbc, l);
	f->flags &= ~F_EOF;
	FUNLOCK(f);
	*ploc = loc;
	return c;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月05日 23:15:41 +0000

AltStyle によって変換されたページ (->オリジナル) /