Module Name: src Committed By: riastradh Date: Sun Aug 18 13:35:11 UTC 2024
Modified Files: src/lib/libc/locale: mbrtoc8.c Log Message: mbrtoc8(3): Fix pasto in comment at top. No functional change intended. PR standards/58601: uchar.h C23 compliance: char8_t, mbrtoc8, c8rtomb To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/lib/libc/locale/mbrtoc8.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/locale/mbrtoc8.c diff -u src/lib/libc/locale/mbrtoc8.c:1.4 src/lib/libc/locale/mbrtoc8.c:1.5 --- src/lib/libc/locale/mbrtoc8.c:1.4 Sat Aug 17 21:24:54 2024 +++ src/lib/libc/locale/mbrtoc8.c Sun Aug 18 13:35:11 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: mbrtoc8.c,v 1.4 2024/08/17 21:24:54 riastradh Exp $ */ +/* $NetBSD: mbrtoc8.c,v 1.5 2024/08/18 13:35:11 riastradh Exp $ */ /*- * Copyright (c) 2024 The NetBSD Foundation, Inc. @@ -27,7 +27,7 @@ */ /* - * mbrtoc16(&c16, s, n, ps) + * mbrtoc8(&c8, s, n, ps) * * Decode a Unicode scalar value from up to n bytes out of the * multibyte string s, using multibyte encoding state ps, and @@ -72,7 +72,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: mbrtoc8.c,v 1.4 2024/08/17 21:24:54 riastradh Exp $"); +__RCSID("$NetBSD: mbrtoc8.c,v 1.5 2024/08/18 13:35:11 riastradh Exp $"); #include "namespace.h"