📄 rune.3
字号:
.\" Copyright (c) 1993.\" The Regents of the University of California. All rights reserved..\".\" This code is derived from software contributed to Berkeley by.\" Paul Borman at Krystal Technologies..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\" notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\" notice, this list of conditions and the following disclaimer in the.\" documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\" must display the following acknowledgement:.\" This product includes software developed by the University of.\" California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\" may be used to endorse or promote products derived from this software.\" without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\" @(#)rune.3 8.2 (Berkeley) 12/11/93.\".Dd "December 11, 1993".Dt RUNE 3.Os.Sh NAME.Nm setrunelocale ,.Nm setinvalidrune ,.Nm sgetrune ,.Nm sputrune.Nd rune support for C.Sh SYNOPSIS.Fd #include <rune.h>.Fd #include <errno.h>.Ft int.Fn setrunelocale "char *locale".Ft void.Fn setinvalidrune "rune_t rune".Ft rune_t.Fn sgetrune "const char *string" "size_t n" "char const **result".Ft int.Fn sputrune "rune_t rune" "char *string" "size_t n" "char **result".sp.Fd #include <stdio.h>.Ft long.Fn fgetrune "FILE *stream".Ft int.Fn fungetrune "rune_t rune" "FILE *stream".Ft int.Fn fputrune "rune_t rune" "FILE *stream".Sh DESCRIPTIONThe.Fn setrunelocalecontrols the type of encoding used to represent runes as multibyte stringsas well as the properties of the runes as defined in\fB<ctype.h>\fP.The.Fa localeargument indicates which locale to load.If the locale is successfully loaded,.Dv 0is returned, otherwise an errno value is returned to indicate thetype of error..PpThe.Fn setinvalidrunefunction sets the value of the global value.Ev _INVALID_RUNEto be.Fa rune..PpThe.Fn sgetrunefunction tries to read a single multibyte character from.Fa string ,which is at most.Fa nbytes long.If.Fn sgetruneis successful, the rune is returned.If.Fa resultis not.Dv NULL ,.Fa *resultwill point to the first byte which was not converted in.Fa string.If the first.Fa nbytes of.Fa stringdo not describe a full multibyte character,.Ev _INVALID_RUNEis returned and.Fa *resultwill point to.Fa string.If there is an encoding error at the start of.Fa string ,.Ev _INVALID_RUNEis returned and .Fa *resultwill point to the second character of.Fa string..Ppthe.Fn sputrunefunction tries to encode.Fa runeas a multibyte string and store it at.Fa string ,but no more than.Fa nbytes will be stored.If.Fa resultis not.Dv NULL ,.Fa *resultwill be set to point to the first byte in string following the newmultibyte character.If.Fa stringis.Dv NULL ,.Fa *resultwill point to.Dv "(char *)0 +".Fa x ,where.Fa xis the number of bytes that would be needed to store the multibyte value.If the multibyte character would consist of more than.Fa nbytes and.Fa resultis not.Dv NULL ,.Fa *resultwill be set to.Dv NULL.In all cases, .Fn sputrunewill return the number of bytes which would be needed to store.Fa runeas a multibyte character..PpThe.Fn fgetrunefunction operates the same as.Fn sgetrunewith the exception that it attempts to read enough bytes from .Fa streamto decode a single rune. It returns either.Ev EOFon end of file,.Ev _INVALID_RUNEon an encoding error, or the rune decoded if all went well..PpThe.Fn fungetrunefunction pushes the multibyte encoding, as provided by.Fn sputrune ,of.Fa runeonto.Fa stream such that the next.Fn fgetrunecall will return.Fa rune .It returns.Ev EOFif it fails and.Dv 0on success..PpThe.Fn fputrunefunction writes the multibyte encoding of.Fa rune ,as provided by.Fn sputrune ,onto.Fa stream .It returns.Ev EOFon failure and.Dv 0on success..Sh RETURN VALUESThe.Fn setrunelocalefunction returns one of the following values:.Bl -tag -width WWWWWWWW.It Dv 0.Fa setrunelocale was successful..It Ev EFAULT.Fa localewas.Dv NULL ..It Ev ENOENTThe locale could not be found..It Ev EFTYPEThe file found was not a valid file..It Ev EINVALThe encoding indicated by the locale was unknown..El.PpThe.Fn sgetrunefunction either returns the rune read or.Ev _INVALID_RUNE .The.Fn sputrunefunction returns the number of bytes needed to store.Fa runeas a multibyte string..Sh FILES.Bl -tag -width /usr/share/locale/locale/LC_CTYPE -compact.It Pa $PATH_LOCALE/\fIlocale\fP/LC_CTYPE.It Pa /usr/share/locale/\fIlocale\fP/LC_CTYPEbinary LC_CTYPE file for the locale \fIlocale\fP..El.Sh "SEE ALSO.Xr euc 4 ,.Xr mbrune 3 ,.Xr setlocale 3 ,.Xr utf2 4.Sh NOTEThe ANSI C type.Ev wchar_tis the same as.Ev rune_t ..Ev Rune_twas chosen to accent the purposeful choice of not basing thesystem with the ANSI Cprimitives, which were, shall we say, less aesthetic..Sh HISTORYThese functions first appeared in.Bx 4.4 ..PpThe.Fn setrunelocalefunction and the other non-ANSI rune functions were inspired by.Nm Plan 9 from Bell Labsas a much more sane alternative to the ANSI multibyte andwide character support..\"They were conceived at the San Diego 1993 Summer USENIX conference by.\"Paul Borman of Krystal Technologies, Keith Bostic of CSRG and Andrew Hume.\"of Bell Labs..PpAll of the ANSI multibyte and wide charactersupport functions are built using the rune functions.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -