1 /* $OpenBSD: mbrtowc_sb.c,v 1.4 2005/11/27 20:03:06 cloder Exp $ */
2 /* $NetBSD: multibyte_sb.c,v 1.4 2003/08/07 16:43:04 agc Exp $ */
5 * SPDX-License-Identifier: BSD-3-Clause
7 * Copyright (C) 1991 The Regents of the University of California.
19 ust_safe_mbrtowc(wchar_t *pwc
, const char *s
, size_t n
,
20 mbstate_t *ps
__attribute__((unused
)))
25 /* ps appears to be unused */
32 *pwc
= (wchar_t)(unsigned char)*s
;
This page took 0.033315 seconds and 4 git commands to generate.