Manual page for Intro(3)
Intro, intro - introduction to functions and libraries
DESCRIPTION
This section describes functions found
in various libraries, other than those functions
that directly invoke
UNIX
system primitives,
which are described in Section 2 of this volume.
Function declarations can be obtained
from the
#include
files indicated on each page.
Certain major collections are identified by a
letter after the section number:
- (3B)
-
These functions constitute the Source Compatibility (with BSD functions) library.
It is implemented as a shared object, libucb.so, and as an archive, libucb.a,
but is not automatically linked by the C compilation system.
Specify -lucb on the cc command
line to link with this library, which is located in the
/usr/ucb subdirectory. Header files for this library are located within
/usr/ucbinclude.
- (3C)
-
These functions, together with those of Section 2 and those
marked (3S), constitute the standard C library, libc,
which is automatically linked by the C compilation system.
The standard C library is implemented as a
shared object, libc.so, and as an archive, libc.a.
C programs are linked with the shared object
version of the standard C library by default.
Specify -dn on the cc command
line to link with the archive version.
(See
cc.1b
for other overrides, and the
``C Compilation System'' chapter of the
ANSI C Programmer's Guide
for a discussion.)
Some functions behave differently in the XPG4 environment. This behavior
is noted on the individual manual pages. See
xpg4.5
- (3E)
-
These functions constitute the ELF access library, libelf,
(Extensible Linking Formats). This library provides the interface for the
creation and analyses of
``elf'' files; executables, objects, and shared objects.
libelf is implemented as a shared object, libelf.so, and as an archive,
libelf.a, but
is not automatically linked by the C compilation system.
Specify -lelf on the cc command
line to link with this library.
- (3G)
-
These functions constitute the string pattern-matching & pathname manipulation library, libgen.
This library is implemented as an archive,
libgen.a,
but not as a shared object,
and is not automatically linked by the C compilation system.
Specify -lgen on the cc command line
to link with this library.
- (3I)
-
These functions constitute the wide character libraries for
multi-byte character support, and the
international library for messaging.
These libraries,
libintl, and libw,
are both implemented as shared objects,
libintl.so and libw.so, and as
archives,
libintl.a and libw.a.
However, they are not automatically linked by the C compilation system;
specify
-lintl
or
-lw
on the
cc
command line, as needed
to link the appropriate library.
- (3K)
-
These functions allow access to the kernel's virtual memory library, which is
implemented as a shared object,
libkvm.so, and as an archive, libkvm.a, but is not automatically linked by the C compilation system.
Specify -lkvm on the cc command line to link with this library.
- (3M)
-
These functions constitute the math library,
libm.
This library is implemented as a shared object,
libm.so,
and as an archive,
libm.a,
but is not automatically linked by the C compilation system.
Specify -lm
on the cc command line to link with this library.
- (3N)
-
These functions constitute the Network Service Library,
libnsl. It is implemented as a shared object,
libnsl.so,
and as an archive,
libnsl.a, but is not automatically linked by the C compilation system.
Specify -lnsl
on the cc command line to link with this library.
Some of the functions documented in man3n incorporate other network libraries, including:
-
+
libsocket,
+
libresolv,
+
librpcsrv,
+
libnisdb,
+
librac,
+
libxfn,
and
+
libkrb.
- (3R)
-
These functions constitute the POSIX.4 Realtime library, libposix4.
It is implemented only as a shared object, libposix4.so,
and is not automatically linked by the C compilation system.
Specify
-lposix4
on the cc command line to link with this library.
- (3S)
-
These functions constitute the
``standard
I/O
package''
(see
stdio.3s
They can be compiled using the the standard C library, libc,
which is automatically linked by the C compilation system.
The standard C library is implemented as a
shared object, libc.so, and as an archive, libc.a.
- (3T)
-
These functions constitute the threads libraries,
libpthread
and
libthread.
These libraries are used for building multithreaded applications.
libpthread
implements the POSIX threads interface, whereas
libthread
implements the Solaris threads interface.
Both POSIX threads and Solaris threads can be used within the
same application. Their implementations are completely
compatible with each other; however, only POSIX threads guarantee
portability to other POSIX-compliant environments.
When POSIX and Solaris threads are used in the same application,
if there are calls with the same name but different
semantics, the POSIX semantic
supersedes the Solaris semantic.
For example, the call to
fork()
will imply the
fork1()
semantic in a program linked with the POSIX threads
library, whether or not it is also linked with
-lthread
(Solaris threads).
libpthread and libthread are implemented as shared objects, libpthread.so and libthread.so, but not as archived libraries.
libpthread and libthread are not automatically linked by the C compilation system.
Specify
-lpthread
or
-lthread
on the cc command line to link with these libraries.
The following functions are optional under POSIX and are not
supported in the current Solaris release.
int pthread_mutexattr_setprotocol(pthread_mutexattr_t *attr,
int protocol);
int pthread_mutexattr_getprotocol(const pthread_mutexattr_t *attr,
int *protocol);
int pthread_mutexattr_setprioceiling(pthread_mutexattr_t *attr,
int prioceiling);
int pthread_mutexattr_getprioceiling(const pthread_mutexattr_t *attr,
int *prioceiling);
- (3X)
-
Specialized libraries.
These functions are contained in libraries including, but not limited
to,
-
+
libadm,
+
libbsdmalloc,
+
libcrypt,
+
libcurses,
+
libdl,
+
libform,
+
libmail,
+
libmalloc,
+
libmapmalloc,
+
libmenu,
and
+
libpanel.
DEFINITIONS
A
character
is any bit pattern able to fit into a byte on the machine.
-
Exception:
in some international languages, a ``character'' may require
more than one byte, and is represented in multi-bytes.
The
null character
is a character with value 0,
conventionally
represented in the C language as \0.
A character array
is a sequence of characters.
A null-terminated character array
(a string)
is a sequence of
characters, the last of which is the
null character.
The
null string
is a character array containing only the terminating null character.
A
NULL
pointer is the value that is obtained by casting
0
into a pointer.
C guarantees that this value will not match
that of any legitimate pointer, so many functions that
return pointers return
NULL
to indicate an error.
The macro
NULL
is defined
in
<stdio.h>.
Types of the form size_t are defined in the appropriate headers.
MT-Level of Libraries
Libraries are classified into four categories which define the level
of the libraries' ability to support threads.
The MT-Level category of
the libraries in this section are shown on each man page under
MT-Level.
Pages containing routines that are of multiple or differing MT-Levels
show this under the
NOTES
section.
- Safe
-
Safe is simply an attribute of code that can be called from a
multithreaded application. It is a generic term used to differentiate
between code that is unsafe.
- Unsafe
-
An unsafe library contains global and static data that is not
protected. It is not safe to use unless the application arranges for
only one thread at time to execute within the library. Unsafe libraries
may contain routines that are safe; however, most of the library's
routines are unsafe to call.
- MT-Safe
-
An MT-Safe library is fully prepared for multithreaded access. It
protects its global and static data with locks, and can provide a
reasonable amount of concurrency.
Note that a library can be safe to use, but not MT-Safe. For example,
surrounding an entire library with a monitor makes the library safe,
but it supports no concurrency so it is not considered MT-Safe.
An MT-Safe library must permit a reasonable amount of concurrency.
(This definition's purpose is to give precision to what is meant
when a library is described as safe. The definition of a "safe" library
does not specify if the library supports concurrency. The MT-Safe
definition makes it clear that the library is safe, and supports some
concurrency. This clarifies the safe definition, which can mean
anything from being single threaded to being any degree of
multithreaded.)
- Async-Signal-Safe
-
Async-Signal-Safe refers to particular library routines that can be
safely called from a signal handler. A thread that is executing an
Async-Signal-Safe routine will not deadlock with itself if interrupted by a
signal. Signals are only a problem for MT-Safe routines that acquire
locks.
Signals are disabled when locks are acquired in Async-Signal-Safe routines.
This prevents a signal handler that might acquire the same lock from
being called.
The designation "Async-Safe" also indicates "Async-Signal-Safe."
The list of "Async-Signal-Safe" functions includes:
_exit kill tcflow
access link tcflush
aio_error lseek tcgetattr
aio_return mkdir tcgetpgrp
aio_suspend mkfifo tcsendbreak
alarm open tcsetattr
cfgetispeed pathconf tcsetpgrp
cfgetospeed pause thr_kill
cfsetispeed pipe thr_sigsetmask
cfsetospeed read time
chdir rename timer_getoverrun
chmod rmdir timer_gettime
chown sem_post timer_settime
clock_gettime sema_post times
close setgid umask
creat setpgid uname
dup setsid unlink
dup2 setuid utime
execle sigaction wait
execve sigaddset waitpid
fcntl sigdelset write
fdatasync sigemptyset
fork sigfillset
fstat sigismember
fsync sigpending
getegid sigprocmask
geteuid sigqueue
getgid sigsuspend
getgroups sleep
getpgrp stat
getpid sysconf
getppid tcdrain
getuid tcdrain
- MT-Safe with exceptions
-
See the
NOTES
sections of these pages for a description of the exceptions.
- Safe with exceptions
-
See the
NOTES
sections of these pages for a description of the exceptions.
- Fork1-Safe
-
A fork1-safe library releases the locks it had held whenever
fork1.2
is called in a Solaris thread program, or
fork.2
in a
POSIX
thread program.
Calling
fork.2
in a
POSIX
thread program has the same semantic as calling
fork1.2
in a Solaris thread program.
All system calls, libpthread, and libthread are
Fork1-Safe.
Otherwise, you should handle the locking clean-up yourself
(see
pthread_atfork.3t
The following table contains reentrant counterparts for unsafe functions.
This table is subject to change by SunSoft.
Reentrant functions for libc
Unsafe Function Reentrant counterpart
ctime ctime_r
localtime localtime_r
asctime asctime_r
gmtime gmtime_r
ctermid ctermid_r
getlogin getlogin_r
rand rand_r
readdir readdir_r
strtok strtok_r
tmpnam tmpnam_r
- Cancel-Safety
-
If a multi-threaded application uses
pthread_cancel.3t
to cancel (i.e., kill a thread), it is possible that the target thread
is killed while holding a resource, such as a lock or allocated memory.
If the thread has not installed the appropriate cancellation cleanup
handlers to release the resources appropriately (see
pthread_cancel.3t
the application is "cancel-unsafe", i.e., it is not safe
with respect to cancellation.
This unsafety could result in deadlocks due to locks
not released by a thread that gets cancelled, or resource leaks;
for example, memory not being freed on thread cancellation.
All applications that use
pthread_cancel(3T)shouldensurethattheyoperateina
cancel-safe environment.
Libraries that have cancellation points and which acquire resources
such as locks or allocate memory dynamically, also contribute to the
cancel-unsafety of applications that are linked with these libraries.
This introduces another level of safety for libraries in a
multi-threaded program: cancel-safety.
There are two sub-categories of cancel-safety:
Deferred-cancel-safety and Asynchronous-cancel-safety.
An application is considered to be Deferred-cancel-safe when it
is cancel-safe for threads whose cancellation type is
PTHREAD_CANCEL_DEFERRED.
An application is considered to be Asynchronous-cancel-safe when it
is cancel-safe for threads whose cancellation type is
PTHREAD_CANCEL_ASYNCHRONOUS.
Deferred-cancel-safety is easier to achieve than
Asynchronous-cancel-safety, since a thread with the deferred
cancellation type can be cancelled only at well-defined
"cancellation points", whereas a thread with the asynchronous
cancellation type can be cancelled anywhere.
Since all threads are created by default to have the deferred
cancellation type,
it may never be necessary to worry about asynchronous cancel safety.
Indeed, most applications and libraries are expected to
always be Asynchronous-cancel-unsafe.
An application which is Asynchronous-cancel-safe is also, by definition,
Deferred-cancel-safe.
FILES
- INCDIR
-
usually /usr/include
- LIBDIR
-
usually /usr/ccs/lib
- LIBDIR/libc.so
-
- LIBDIR/libc.a
-
- LIBDIR/libgen.a
-
- LIBDIR/libm.a
-
- LIBDIR/libsfm.sa
-
- /usr/lib/libc.so.1
-
SEE ALSO
ar.1
cc.1b
ld.1
nm.1
fork.2
intro.2
stdio.3s
pthread_atfork.3t
xpg4.5
ANSI C Programmer's Guide
DIAGNOSTICS
For functions that return floating-point values,
error handling varies
according to compilation mode.
Under the -Xt (default) option to cc,
these functions return
the conventional values
0, ±HUGE, or NaN
when the function is undefined for the
given arguments or when the value is not representable.
In the -Xa and -Xc compilation modes,
±HUGE_VAL is returned instead of ±HUGE.
(HUGE_VAL and HUGE are defined in math.h
to be infinity and the largest-magnitude single-precision number,
respectively.)
NOTES ON MULTITHREAD APPLICATIONS
When compiling a multithreaded application, either the
_POSIX_C_SOURCE,
_POSIX_PTHREAD_SEMANTICS,
or
_REENTRANT
flag must be defined on the command line.
This enables special definitions for functions
only applicable to multithreaded applications.
For POSIX.1c compliant applications, define the
_POSIX_C_SOURCE
flag to be >= 199506L:
cc [flags] file... -D_POSIX_C_SOURCE=199506L -lpthread
For POSIX behavior with the Solaris
fork()
and
fork1()
distinction, compile as follows:
cc [flags] file... -D_POSIX_PTHREAD_SEMANTICS -lthread
For Solaris behavior, compile as follows:
cc [flags] file... -D_REENTRANT -lthread
When building a singlethreaded application,
the above flags should be undefined.
This generates a binary that is executable
on previous Solaris releases, which do not support multithreading.
When linking, it is a requirement that a multithreaded application be
constructed to ensure that
libthread
physically interposes upon the C library.
For example, the command line for linking the application using
ld
should be ordered as follows:
example% ld [options] .o's ... -lthread -lc ...
Note that the behavior of the C library is undefined if
-lc
precedes
-lthread.
And, when linking with
cc,
-lthread
or
-lpthread
must be last on the command line.
Unsafe interfaces should be called only from the main thread to
ensure the application's safety.
MT-Safe interfaces are denoted in the NOTES section of the functions and
libraries man pages. If a man page does not state explicitly that an
interface is MT-Safe, the user should assume that the interface is unsafe.
REALTIME APPLICATIONS
Be sure to have set the environment variable
LD_BIND_NOW
to a non-NULL value to enable early binding.
NOTES
None of the functions, external variables,
or macros should be redefined in the user's programs.
Any other name may be redefined without affecting the
behavior of other library functions, but such redefinition may conflict with
a declaration in an included header.
The headers in
INCDIR
provide function prototypes
(function declarations including the types of arguments)
for most of the functions listed in this manual.
Function prototypes allow the compiler to check for correct usage
of these functions in the user's program.
The lint program checker
may also be used and will report discrepancies even if the
headers are not included with #include statements.
Definitions for Sections 2, 3C, and 3S are
checked automatically.
Other definitions can be included by using the
-l
option to
lint.
(For example,
-lm
includes definitions for
libm.)
Use of
lint
is highly recommended.
See the
lint
chapter in
Users should carefully note the difference between STREAMS
and stream.
STREAMS is a set of kernel mechanisms that support the
development of network services and data communication drivers.
It is composed of utility routines, kernel facilities, and
a set of data structures.
A stream is a file with its associated buffering.
It is declared to be a pointer to a type FILE
defined in <stdio.h>.
In detailed definitions of components, it is sometimes necessary to refer to
symbolic names that are implementation-specific, but which are not necessarily
expected to be accessible to an application program.
Many of these symbolic names describe boundary conditions and system limits.
In this section, for readability, these implementation-specific
values are given symbolic names.
These names always appear enclosed in curly brackets to distinguish them from
symbolic names of other implementation-specific constants that are accessible
to application programs by headers.
These names are not necessarily accessible to an application program through
a header, although they may be defined in the documentation for a
particular system.
In general, a portable application program should not refer to these symbolic names
in its code.
For example, an application program would not be expected to test the length of
an argument list given to a
routine to determine if
it was greater than {ARG_MAX}.
LIST OF C LIBRARY FUNCTIONS
- Name
-
Description
- a64l.3c
-
convert between long integer and base-64 ASCII string
- abort.3c
-
terminate the process abnormally
- abs.3c
-
return absolute value of integer
- accept.3n
-
accept a connection on a socket
- aclcheck.3
-
check the validity of an ACL
- aclfrommode(3)
-
See
acltomode.3
- aclfrompbits(3)
-
See
acltopbits.3
- aclfromtext(3)
-
See
acltotext.3
- aclsort.3
-
sort an ACL
- acltomode.3
-
convert an ACL to/from permission bits
- acltopbits.3
-
convert an ACL to/from permission bits
- acltotext.3
-
convert an internal representation to/from external representation
- acos(3M)
-
See
trig.3m
- acosh(3M)
-
See
hyperbolic.3m
- addch(3X)
-
See
curs_addch.3x
- addchnstr(3X)
-
See
curs_addchstr.3x
- addchstr(3X)
-
See
curs_addchstr.3x
- addnstr(3X)
-
See
curs_addstr.3x
- addnwstr(3X)
-
See
curs_addwstr.3x
- addsev.3c
-
define additional severities
- addseverity.3c
-
build a list of severity levels for an application for use with fmtmsg
- addstr(3X)
-
See
curs_addstr.3x
- addwch(3X)
-
See
curs_addwch.3x
- addwchnstr(3X)
-
See
curs_addwchstr.3x
- addwchstr(3X)
-
See
curs_addwchstr.3x
- addwstr(3X)
-
See
curs_addwstr.3x
- adjcurspos(3X)
-
See
curs_alecompat.3x
- advance(3G)
-
See
regexpr.3g
- aiocancel.3
-
cancel an asynchronous operation
- aio_cancel.3r
-
cancel asynchronous I/O request
- aio_error(3R)
-
See
aio_return.3r
- aio_fsync.3r
-
asynchronous file synchronization
- aioread.3
-
asynchronous I/O operations
- aio_read.3r
-
asynchronous read and write operations
- aio_return.3r
-
retrieve return or error status of asynchronous I/O operation
- aio_suspend.3r
-
wait for asynchronous I/O request
- aiowait.3
-
wait for completion of asynchronous I/O operation
- aiowrite(3)
-
See
aioread.3
- aio_write(3R)
-
See
aio_read.3r
- alloca(3C)
-
See
malloc.3c
- alphasort(3B)
-
See
scandir.3b
- arc(3)
-
See
plot.3
- ascftime(3C)
-
See
strftime.3c
- asctime(3C)
-
See
ctime.3c
- asctime_r(3C)
-
See
ctime.3c
- asin(3M)
-
See
trig.3m
- asinh(3M)
-
See
hyperbolic.3m
- assert.3c
-
verify program assertion
- asysmem(3)
-
See
sysmem.3
- atan(3M)
-
See
trig.3m
- atan2(3M)
-
See
trig.3m
- atanh(3M)
-
See
hyperbolic.3m
- atexit.3c
-
add program termination routine
- atof(3C)
-
See
strtod.3c
- atoi(3C)
-
See
strtol.3c
- atol(3C)
-
See
strtol.3c
- atoll(3C)
-
See
strtol.3c
- attroff(3X)
-
See
curs_attr.3x
- attron(3X)
-
See
curs_attr.3x
- attrset(3X)
-
See
curs_attr.3x
- au_close(3)
-
See
au_open.3
- au_open.3
-
construct and write audit records
- au_preselect.3
-
preselect an audit event
- authdes_create(3N)
-
See
rpc_soc.3n
- authdes_getucred(3N)
-
See
secure_rpc.3n
- authdes_seccreate(3N)
-
See
secure_rpc.3n
- auth_destroy(3N)
-
See
rpc_clnt_auth.3n
- authkerb_getucred(3N)
-
See
kerberos_rpc.3n
- authkerb_seccreate(3N)
-
See
kerberos_rpc.3n
- authnone_create(3N)
-
See
rpc_clnt_auth.3n
- authsys_create(3N)
-
See
rpc_clnt_auth.3n
- authsys_create_default(3N)
-
See
rpc_clnt_auth.3n
- authunix_create(3N)
-
See
rpc_soc.3n
- authunix_create_default(3N)
-
See
rpc_soc.3n
- au_to.3
-
create audit record tokens
- au_to_arg(3)
-
See
au_to.3
- au_to_attr(3)
-
See
au_to.3
- au_to_data(3)
-
See
au_to.3
- au_to_groups(3)
-
See
au_to.3
- au_to_in_addr(3)
-
See
au_to.3
- au_to_ipc(3)
-
See
au_to.3
- au_to_ipc_perm(3)
-
See
au_to.3
- au_to_iport(3)
-
See
au_to.3
- au_to_me(3)
-
See
au_to.3
- au_to_opaque(3)
-
See
au_to.3
- au_to_path(3)
-
See
au_to.3
- au_to_process(3)
-
See
au_to.3
- au_to_return(3)
-
See
au_to.3
- au_to_socket(3)
-
See
au_to.3
- au_to_text(3)
-
See
au_to.3
- au_user_mask.3
-
get user's binary preselection mask
- au_write(3)
-
See
au_open.3
- basename.3g
-
return the last element of a path name
- baudrate(3X)
-
See
curs_termattrs.3x
- bcmp(3C)
-
See
bstring.3c
- bcopy(3C)
-
See
bstring.3c
- beep(3X)
-
See
curs_beep.3x
- bessel.3m
-
Bessel functions
- bgets.3g
-
read stream up to next delimiter
- bind.3n
-
bind a name to a socket
- bindtextdomain(3I)
-
See
gettext.3i
- bkgd(3X)
-
See
curs_bkgd.3x
- bkgdset(3X)
-
See
curs_bkgd.3x
- border(3X)
-
See
curs_border.3x
- bottom_panel(3X)
-
See
panel_top.3x
- box(3)
-
See
plot.3
- box(3X)
-
See
curs_border.3x
- bsdmalloc.3x
-
memory allocator
- bsearch.3c
-
binary search a sorted table
- bstring.3c
-
bit and byte string operations
- bufsplit.3g
-
split buffer into fields
- byteorder.3n
-
convert values between host and network byte order
- bzero(3C)
-
See
bstring.3c
- calloc(3C)
-
See
malloc.3c
- calloc(3X)
-
See
malloc.3x
- calloc(3X)
-
See
mapmalloc.3x
- callrpc(3N)
-
See
rpc_soc.3n
- cancellation.3t
-
canceling execution of a thread
- can_change_color(3X)
-
See
curs_color.3x
- catclose(3C)
-
See
catopen.3c
- catgets.3c
-
read a program message
- catopen.3c
-
open/close a message catalog
- cbc_crypt(3)
-
See
des_crypt.3
- cbreak(3X)
-
See
curs_inopts.3x
- cbrt(3M)
-
See
sqrt.3m
- ceil(3M)
-
See
floor.3m
- cfgetispeed(3)
-
See
termios.3
- cfgetospeed(3)
-
See
termios.3
- cfree(3X)
-
See
mapmalloc.3x
- cfsetispeed(3)
-
See
termios.3
- cfsetospeed(3)
-
See
termios.3
- cftime(3C)
-
See
strftime.3c
- circle(3)
-
See
plot.3
- clear(3X)
-
See
curs_clear.3x
- clearerr(3S)
-
See
ferror.3s
- clearok(3X)
-
See
curs_outopts.3x
- clnt_broadcast(3N)
-
See
rpc_soc.3n
- clnt_call(3N)
-
See
rpc_clnt_calls.3n
- clnt_control(3N)
-
See
rpc_clnt_create.3n
- clnt_create(3N)
-
See
rpc_clnt_create.3n
- clnt_create_timed(3N)
-
See
rpc_clnt_create.3n
- clnt_create_vers(3N)
-
See
rpc_clnt_create.3n
- clnt_destroy(3N)
-
See
rpc_clnt_create.3n
- clnt_dg_create(3N)
-
See
rpc_clnt_create.3n
- clnt_freeres(3N)
-
See
rpc_clnt_calls.3n
- clnt_geterr(3N)
-
See
rpc_clnt_calls.3n
- clnt_pcreateerror(3N)
-
See
rpc_clnt_create.3n
- clnt_perrno(3N)
-
See
rpc_clnt_calls.3n
- clnt_perror(3N)
-
See
rpc_clnt_calls.3n
- clnt_raw_create(3N)
-
See
rpc_clnt_create.3n
- clntraw_create(3N)
-
See
rpc_soc.3n
- clnt_spcreateerror(3N)
-
See
rpc_clnt_create.3n
- clnt_sperrno(3N)
-
See
rpc_clnt_calls.3n
- clnt_sperror(3N)
-
See
rpc_clnt_calls.3n
- clnttcp_create(3N)
-
See
rpc_soc.3n
- clnt_tli_create(3N)
-
See
rpc_clnt_create.3n
- clnt_tp_create(3N)
-
See
rpc_clnt_create.3n
- clnt_tp_create_timed(3N)
-
See
rpc_clnt_create.3n
- clntudp_bufcreate(3N)
-
See
rpc_soc.3n
- clntudp_create(3N)
-
See
rpc_soc.3n
- clnt_vc_create(3N)
-
See
rpc_clnt_create.3n
- clock.3c
-
report CPU time used
- clock_getres(3R)
-
See
clock_settime.3r
- clock_gettime(3R)
-
See
clock_settime.3r
- clock_settime.3r
-
high-resolution clock operations
- closedir(3C)
-
See
directory.3c
- closelog(3)
-
See
syslog.3
- closepl(3)
-
See
plot.3
- closevt(3)
-
See
plot.3
- clrtobot(3X)
-
See
curs_clear.3x
- clrtoeol(3X)
-
See
curs_clear.3x
- color_content(3X)
-
See
curs_color.3x
- compile(3G)
-
See
regexpr.3g
- cond_broadcast(3T)
-
See
condition.3t
- cond_destroy(3T)
-
See
condition.3t
- cond_init(3T)
-
See
condition.3t
- condition.3t
-
condition variables
- cond_signal(3T)
-
See
condition.3t
- cond_timedwait(3T)
-
See
condition.3t
- cond_wait(3T)
-
See
condition.3t
- confstr.3c
-
get configurable variables
- connect.3n
-
initiate a connection on a socket
- cont(3)
-
See
plot.3
- conv.3c
-
translate characters
- copylist.3g
-
copy a file into memory
- copysign(3M)
-
See
ieee_functions.3m
- copywin(3X)
-
See
curs_overlay.3x
- cos(3M)
-
See
trig.3m
- cosh(3M)
-
See
hyperbolic.3m
- crypt.3c
-
generate encryption
- cset.3i
-
get information on EUC codesets
- csetcol(3I)
-
See
cset.3i
- csetlen(3I)
-
See
cset.3i
- csetno(3I)
-
See
cset.3i
- ctermid.3s
-
generate path name for controlling terminal
- ctermid_r(3S)
-
See
ctermid.3s
- ctime.3c
-
convert date and time to string
- ctime_r(3C)
-
See
ctime.3c
- ctype.3c
-
character handling
- current_field(3X)
-
See
form_page.3x
- current_item(3X)
-
See
menu_item_current.3x
- curs_addch.3x
-
add a character (with attributes) to a curses window and advance cursor
- curs_addchstr.3x
-
add string of characters (and attributes) to a curses window
- curs_addstr.3x
-
add a string of characters to a curses window and advance cursor
- curs_addwch.3x
-
add a wchar_t character (with attributes) to a curses window and advance cursor
- curs_addwchstr.3x
-
add string of wchar_t characters (and attributes) to a curses window
- curs_addwstr.3x
-
add a string of wchar_t characters to a curses window and advance cursor
- curs_alecompat.3x
-
these functions are added to ALE curses library for moving the cursor by character.
- curs_attr.3x
-
curses character and window attribute control routines
- curs_beep.3x
-
curses bell and screen flash routines
- curs_bkgd.3x
-
curses window background manipulation routines
- curs_border.3x
-
create curses borders, horizontal and vertical lines
- curs_clear.3x
-
clear all or part of a curses window
- curs_color.3x
-
curses color manipulation routines
- curs_delch.3x
-
delete character under cursor in a curses window
- curs_deleteln.3x
-
delete and insert lines in a curses window
- curses.3x
-
CRT screen handling and optimization package
- curs_getch.3x
-
get (or push back) characters from curses terminal keyboard
- curs_getstr.3x
-
get character strings from curses terminal keyboard
- curs_getwch.3x
-
get (or push back) wchar_t characters from curses terminal keyboard
- curs_getwstr.3x
-
get wchar_t character strings from curses terminal keyboard
- curs_getyx.3x
-
get curses cursor and window coordinates
- curs_inch.3x
-
get a character and its attributes from a curses window
- curs_inchstr.3x
-
get a string of characters (and attributes) from a curses window
- curs_initscr.3x
-
curses screen initialization and manipulation routines
- curs_inopts.3x
-
curses terminal input option control routines
- curs_insch.3x
-
insert a character before the character under the cursor in a curses window
- curs_insstr.3x
-
insert string before character under the cursor in a curses window
- curs_instr.3x
-
get a string of characters from a curses window
- curs_inswch.3x
-
insert a wchar_t character before the character under the cursor in a curses window
- curs_inswstr.3x
-
insert wchar_t string before character under the cursor in a curses window
- curs_inwch.3x
-
get a wchar_t character and its attributes from a curses window
- curs_inwchstr.3x
-
get a string of wchar_t characters (and attributes) from a curses window
- curs_inwstr.3x
-
get a string of wchar_t characters from a curses window
- curs_kernel.3x
-
low-level curses routines
- curs_move.3x
-
move curses window cursor
- curs_outopts.3x
-
curses terminal output option control routines
- curs_overlay.3x
-
overlap and manipulate overlapped curses windows
- curs_pad.3x
-
create and display curses pads
- curs_printw.3x
-
print formatted output in curses windows
- curs_refresh.3x
-
refresh curses windows and lines
- curs_scanw.3x
-
convert formatted input from a curses widow
- curs_scr_dump.3x
-
read (write) a curses screen from (to) a file
- curs_scroll.3x
-
scroll a curses window
- curs_set(3X)
-
See
curs_kernel.3x
- curs_slk.3x
-
curses soft label routines
- curs_termattrs.3x
-
curses environment query routines
- curs_termcap.3x
-
curses interfaces (emulated) to the termcap library
- curs_terminfo.3x
-
curses interfaces to terminfo database
- curs_touch.3x
-
curses refresh control routines
- curs_util.3x
-
curses miscellaneous utility routines
- curs_window.3x
-
create curses windows
- cuserid.3s
-
get character login name of the user
- data_ahead(3X)
-
See
form_data.3x
- data_behind(3X)
-
See
form_data.3x
- db_add_entry(3N)
-
See
nis_db.3n
- db_checkpoint(3N)
-
See
nis_db.3n
- db_create_table(3N)
-
See
nis_db.3n
- db_destroy_table(3N)
-
See
nis_db.3n
- db_first_entry(3N)
-
See
nis_db.3n
- db_free_result(3N)
-
See
nis_db.3n
- db_initialize(3N)
-
See
nis_db.3n
- db_list_entries(3N)
-
See
nis_db.3n
- dbm.3b
-
data base subroutines
- dbm_clearerr(3)
-
See
ndbm.3
- dbm_close(3)
-
See
ndbm.3
- dbmclose(3B)
-
See
dbm.3b
- dbm_delete(3)
-
See
ndbm.3
- dbm_error(3)
-
See
ndbm.3
- dbm_fetch(3)
-
See
ndbm.3
- dbm_firstkey(3)
-
See
ndbm.3
- dbminit(3B)
-
See
dbm.3b
- dbm_nextkey(3)
-
See
ndbm.3
- dbm_open(3)
-
See
ndbm.3
- dbm_store(3)
-
See
ndbm.3
- db_next_entry(3N)
-
See
nis_db.3n
- db_remove_entry(3N)
-
See
nis_db.3n
- db_reset_next_entry(3N)
-
See
nis_db.3n
- db_standby(3N)
-
See
nis_db.3n
- db_table_exists(3N)
-
See
nis_db.3n
- db_unload_table(3N)
-
See
nis_db.3n
- dcgettext(3I)
-
See
gettext.3i
- decimal_to_double(3)
-
See
decimal_to_floating.3
- decimal_to_extended(3)
-
See
decimal_to_floating.3
- decimal_to_floating.3
-
convert decimal record to floating-point value
- decimal_to_quadruple(3)
-
See
decimal_to_floating.3
- decimal_to_single(3)
-
See
decimal_to_floating.3
- def_prog_mode(3X)
-
See
curs_kernel.3x
- def_shell_mode(3X)
-
See
curs_kernel.3x
- delay_output(3X)
-
See
curs_util.3x
- delch(3X)
-
See
curs_delch.3x
- del_curterm(3X)
-
See
curs_terminfo.3x
- delete(3B)
-
See
dbm.3b
- deleteln(3X)
-
See
curs_deleteln.3x
- del_panel(3X)
-
See
panel_new.3x
- delscreen(3X)
-
See
curs_initscr.3x
- delwin(3X)
-
See
curs_window.3x
- demangle.3
-
decode a C++ encoded symbol name
- derwin(3X)
-
See
curs_window.3x
- des_crypt.3
-
fast DES encryption
- DES_FAILED(3)
-
See
des_crypt.3
- des_failed(3)
-
See
des_crypt.3
- des_setparity(3)
-
See
des_crypt.3
- dgettext(3I)
-
See
gettext.3i
- dial.3n
-
establish an outgoing terminal line connection
- difftime.3c
-
computes the difference between two calendar times
- directory.3c
-
directory operations
- dirname.3g
-
report the parent directory name of a file path name
- div.3c
-
compute the quotient and remainder
- dladdr.3x
-
translate address to symbolic information
- dlclose.3x
-
close a shared object
- dlerror.3x
-
get diagnostic information
- dlopen.3x
-
open a shared object
- dlsym.3x
-
get the address of a symbol in a shared object
- dn_comp(3N)
-
See
resolver.3n
- dn_expand(3N)
-
See
resolver.3n
- doconfig.3n
-
execute a configuration script
- double_to_decimal(3)
-
See
floating_to_decimal.3
- doupdate(3X)
-
See
curs_refresh.3x
- drand48.3c
-
generate uniformly distributed pseudo-random numbers
- dup2.3c
-
duplicate an open file descriptor
- dup_field(3X)
-
See
form_field_new.3x
- dupwin(3X)
-
See
curs_window.3x
- dynamic_field_info(3X)
-
See
form_field_info.3x
- ecb_crypt(3)
-
See
des_crypt.3
- echo(3X)
-
See
curs_inopts.3x
- echochar(3X)
-
See
curs_addch.3x
- echowchar(3X)
-
See
curs_addwch.3x
- econvert.3
-
output conversion
- ecvt(3)
-
See
econvert.3
- ecvt.3c
-
convert floating-point number to string
- _edata(3C)
-
See
end.3c
- edata(3C)
-
See
end.3c
- elf.3e
-
object file access library
- elf32_fsize.3e
-
return the size of an object file type
- elf32_getehdr.3e
-
retrieve class-dependent object file header
- elf32_getphdr.3e
-
retrieve class-dependent program header table
- elf32_getshdr.3e
-
retrieve class-dependent section header
- elf32_newehdr(3E)
-
See
elf32_getehdr.3e
- elf32_newphdr(3E)
-
See
elf32_getphdr.3e
- elf32_xlatetof.3e
-
class-dependent data translation
- elf32_xlatetom(3E)
-
See
elf32_xlatetof.3e
- elf_begin.3e
-
process ELF object files
- elf_cntl.3e
-
control an elf file descriptor
- elf_end(3E)
-
See
elf_begin.3e
- elf_errmsg.3e
-
error handling
- elf_errno(3E)
-
See
elf_errmsg.3e
- elf_fill.3e
-
set fill byte
- elf_flagdata.3e
-
manipulate flags
- elf_flagehdr(3E)
-
See
elf_flagdata.3e
- elf_flagelf(3E)
-
See
elf_flagdata.3e
- elf_flagphdr(3E)
-
See
elf_flagdata.3e
- elf_flagscn(3E)
-
See
elf_flagdata.3e
- elf_flagshdr(3E)
-
See
elf_flagdata.3e
- elf_getarhdr.3e
-
retrieve archive member header
- elf_getarsym.3e
-
retrieve archive symbol table
- elf_getbase.3e
-
get the base offset for an object file
- elf_getdata.3e
-
get section data
- elf_getident.3e
-
retrieve file identification data
- elf_getscn.3e
-
get section information
- elf_hash.3e
-
compute hash value
- elf_kind.3e
-
determine file type
- elf_memory(3E)
-
See
elf_begin.3e
- elf_ndxscn(3E)
-
See
elf_getscn.3e
- elf_newdata(3E)
-
See
elf_getdata.3e
- elf_newscn(3E)
-
See
elf_getscn.3e
- elf_next(3E)
-
See
elf_begin.3e
- elf_nextscn(3E)
-
See
elf_getscn.3e
- elf_rand(3E)
-
See
elf_begin.3e
- elf_rawdata(3E)
-
See
elf_getdata.3e
- elf_rawfile.3e
-
retrieve uninterpreted file contents
- elf_strptr.3e
-
make a string pointer
- elf_update.3e
-
update an ELF descriptor
- elf_version.3e
-
coordinate ELF library and application versions
- encrypt(3C)
-
See
crypt.3c
- end.3c
-
last locations in program
- _end(3C)
-
See
end.3c
- endac(3)
-
See
getacinfo.3
- endauclass(3)
-
See
getauclassent.3
- endauevent(3)
-
See
getauevent.3
- endauuser(3)
-
See
getauusernam.3
- endgrent(3C)
-
See
getgrnam.3c
- endhostent(3N)
-
See
gethostbyname.3n
- endnetconfig(3N)
-
See
getnetconfig.3n
- endnetent(3N)
-
See
getnetbyname.3n
- endnetgrent(3N)
-
See
getnetgrent.3n
- endnetpath(3N)
-
See
getnetpath.3n
- endprotoent(3N)
-
See
getprotobyname.3n
- endpwent(3C)
-
See
getpwnam.3c
- endrpcent(3N)
-
See
getrpcbyname.3n
- endservent(3N)
-
See
getservbyname.3n
- endspent(3C)
-
See
getspnam.3c
- endusershell(3C)
-
See
getusershell.3c
- endutent(3C)
-
See
getutent.3c
- endutxent(3C)
-
See
getutxent.3c
- endwin(3X)
-
See
curs_initscr.3x
- erand48(3C)
-
See
drand48.3c
- erase(3)
-
See
plot.3
- erase(3X)
-
See
curs_clear.3x
- erasechar(3X)
-
See
curs_termattrs.3x
- erf.3m
-
error functions
- erfc(3M)
-
See
erf.3m
- errno(3C)
-
See
perror.3c
- _etext(3C)
-
See
end.3c
- etext(3C)
-
See
end.3c
- ether_aton(3N)
-
See
ethers.3n
- ether_hostton(3N)
-
See
ethers.3n
- ether_line(3N)
-
See
ethers.3n
- ether_ntoa(3N)
-
See
ethers.3n
- ether_ntohost(3N)
-
See
ethers.3n
- ethers.3n
-
Ethernet address mapping operations
- euccol(3I)
-
See
euclen.3i
- euclen.3i
-
get byte length and display width of EUC characters
- eucscol(3I)
-
See
euclen.3i
- exit.3c
-
terminate process
- exp.3m
-
exponential, logarithm, power
- expm1(3M)
-
See
exp.3m
- extended_to_decimal(3)
-
See
floating_to_decimal.3
- fabs(3M)
-
See
ieee_functions.3m
- fattach.3c
-
attach a STREAMS-based file descriptor to an object in the file system name space
- fclose.3s
-
close or flush a stream
- fconvert(3)
-
See
econvert.3
- fcvt(3)
-
See
econvert.3
- fcvt(3C)
-
See
ecvt.3c
- fdatasync.3r
-
synchronize a file's data
- fdetach.3c
-
detach a name from a STREAMS-based file descriptor
- fdopen(3S)
-
See
fopen.3s
- feof(3S)
-
See
ferror.3s
- ferror.3s
-
stream status inquiries
- fetch(3B)
-
See
dbm.3b
- fflush(3S)
-
See
fclose.3s
- ffs.3c
-
find first set bit
- fgetc(3S)
-
See
getc.3s
- fgetgrent(3C)
-
See
getgrnam.3c
- fgetgrent_r(3C)
-
See
getgrnam.3c
- fgetpos(3C)
-
See
fsetpos.3c
- fgetpwent(3C)
-
See
getpwnam.3c
- fgetpwent_r(3C)
-
See
getpwnam.3c
- fgets(3S)
-
See
gets.3s
- fgetspent(3C)
-
See
getspnam.3c
- fgetspent_r(3C)
-
See
getspnam.3c
- fgetwc(3I)
-
See
getwc.3i
- fgetws(3I)
-
See
getws.3i
- field_arg(3X)
-
See
form_field_validation.3x
- field_back(3X)
-
See
form_field_attributes.3x
- field_buffer(3X)
-
See
form_field_buffer.3x
- field_count(3X)
-
See
form_field.3x
- field_fore(3X)
-
See
form_field_attributes.3x
- field_index(3X)
-
See
form_page.3x
- field_info(3X)
-
See
form_field_info.3x
- field_init(3X)
-
See
form_hook.3x
- field_just(3X)
-
See
form_field_just.3x
- field_opts(3X)
-
See
form_field_opts.3x
- field_opts_off(3X)
-
See
form_field_opts.3x
- field_opts_on(3X)
-
See
form_field_opts.3x
- field_pad(3X)
-
See
form_field_attributes.3x
- field_status(3X)
-
See
form_field_buffer.3x
- field_term(3X)
-
See
form_hook.3x
- field_type(3X)
-
See
form_field_validation.3x
- field_userptr(3X)
-
See
form_field_userptr.3x
- fileno(3S)
-
See
ferror.3s
- file_to_decimal(3)
-
See
string_to_decimal.3
- filter(3X)
-
See
curs_util.3x
- finite(3C)
-
See
isnan.3c
- firstkey(3B)
-
See
dbm.3b
- flash(3X)
-
See
curs_beep.3x
- floating_to_decimal.3
-
convert floating-point value to decimal record
- flock.3b
-
apply or remove an advisory lock on an open file
- flockfile.3s
-
acquire and release stream lock
- floor.3m
-
round to integral value in floating-point format
- flushinp(3X)
-
See
curs_util.3x
- fmod(3M)
-
See
ieee_functions.3m
- fmtmsg.3c
-
display a message on stderr or system console
- fn_attr_get.3n
-
return specified attribute associated with name
- fn_attr_get_ids.3n
-
get a list of the identifiers of all attributes associated with named object
- fn_attr_get_values.3n
-
return values of an attribute
- fn_attribute_add(3N)
-
See
FN_attribute_t.3n
- fn_attribute_assign(3N)
-
See
FN_attribute_t.3n
- fn_attribute_copy(3N)
-
See
FN_attribute_t.3n
- fn_attribute_create(3N)
-
See
FN_attribute_t.3n
- fn_attribute_destroy(3N)
-
See
FN_attribute_t.3n
- fn_attribute_first(3N)
-
See
FN_attribute_t.3n
- fn_attribute_identifier(3N)
-
See
FN_attribute_t.3n
- fn_attribute_next(3N)
-
See
FN_attribute_t.3n
- fn_attribute_remove(3N)
-
See
FN_attribute_t.3n
- fn_attribute_syntax(3N)
-
See
FN_attribute_t.3n
- FN_attribute_t.3n
-
an XFN attribute
- fn_attribute_valuecount(3N)
-
See
FN_attribute_t.3n
- fn_attr_modify.3n
-
modify specified attribute associated with name
- fn_attrmodlist_add(3N)
-
See
FN_attrmodlist_t.3n
- fn_attrmodlist_assign(3N)
-
See
FN_attrmodlist_t.3n
- fn_attrmodlist_copy(3N)
-
See
FN_attrmodlist_t.3n
- fn_attrmodlist_count(3N)
-
See
FN_attrmodlist_t.3n
- fn_attrmodlist_create(3N)
-
See
FN_attrmodlist_t.3n
- fn_attrmodlist_destroy(3N)
-
See
FN_attrmodlist_t.3n
- fn_attrmodlist_first(3N)
-
See
FN_attrmodlist_t.3n
- fn_attrmodlist_next(3N)
-
See
FN_attrmodlist_t.3n
- FN_attrmodlist_t.3n
-
a list of attribute modifications
- fn_attr_multi_get.3n
-
return multiple attributes associated with named object
- fn_attr_multi_modify.3n
-
modify multiple attributes associated with named object
- fn_attrset_add(3N)
-
See
FN_attrset_t.3n
- fn_attrset_assign(3N)
-
See
FN_attrset_t.3n
- fn_attrset_copy(3N)
-
See
FN_attrset_t.3n
- fn_attrset_count(3N)
-
See
FN_attrset_t.3n
- fn_attrset_create(3N)
-
See
FN_attrset_t.3n
- fn_attrset_destroy(3N)
-
See
FN_attrset_t.3n
- fn_attrset_first(3N)
-
See
FN_attrset_t.3n
- fn_attrset_get(3N)
-
See
FN_attrset_t.3n
- fn_attrset_next(3N)
-
See
FN_attrset_t.3n
- fn_attrset_remove(3N)
-
See
FN_attrset_t.3n
- FN_attrset_t.3n
-
a set of XFN attributes
- FN_attrvalue_t.3n
-
an XFN attribute value
- fn_bindinglist_destroy(3N)
-
See
fn_ctx_list_bindings.3n
- fn_bindinglist_next(3N)
-
See
fn_ctx_list_bindings.3n
- FN_bindinglist_t(3N)
-
See
fn_ctx_list_bindings.3n
- fn_composite_name_append_comp(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_append_name(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_assign(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_copy(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_count(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_create(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_delete_comp(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_destroy(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_first(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_from_string(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_insert_comp(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_insert_name(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_is_empty(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_is_equal(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_is_prefix(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_is_suffix(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_last(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_next(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_prefix(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_prepend_comp(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_prepend_name(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_prev(3N)
-
See
FN_composite_name_t.3n
- fn_composite_name_suffix(3N)
-
See
FN_composite_name_t.3n
- FN_composite_name_t.3n
-
a sequence of component names spanning multiple naming systems
- fn_compound_name_append_comp(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_assign(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_copy(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_count(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_delete_all(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_delete_comp(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_destroy(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_first(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_from_syntax_attrs(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_get_syntax_attrs(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_insert_comp(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_is_empty(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_is_equal(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_is_prefix(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_is_suffix(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_last(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_next(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_prefix(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_prepend_comp(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_prev(3N)
-
See
FN_compound_name_t.3n
- fn_compound_name_suffix(3N)
-
See
FN_compound_name_t.3n
- FN_compound_name_t.3n
-
an XFN compound name
- fn_ctx_bind.3n
-
bind a reference to a name
- fn_ctx_create_subcontext.3n
-
create a subcontext in a context
- fn_ctx_destroy_subcontext.3n
-
destroy the named context and remove its binding from the parent context
- fn_ctx_get_ref.3n
-
return a context's reference
- fn_ctx_get_syntax_attrs.3n
-
return syntax attributes associated with named context
- fn_ctx_handle_destroy.3n
-
release storage associated with context handle
- fn_ctx_handle_from_initial.3n
-
return a handle to the Initial Context
- fn_ctx_handle_from_ref.3n
-
construct a handle to a context object using the given reference
- fn_ctx_list_bindings.3n
-
list the atomic names and references bound in a context
- fn_ctx_list_names.3n
-
list the atomic names bound in a context
- fn_ctx_lookup.3n
-
look up name in context
- fn_ctx_lookup_link.3n
-
look up the link reference bound to a name
- fn_ctx_rename.3n
-
rename the name of a binding
- FN_ctx_t.3n
-
an XFN context
- fn_ctx_unbind.3n
-
unbind a name from a context
- FN_identifier_t.3n
-
an XFN identifier
- fnmatch.3c
-
match filename or path name
- fn_multigetlist_destroy(3N)
-
See
fn_attr_multi_get.3n
- fn_multigetlist_next(3N)
-
See
fn_attr_multi_get.3n
- FN_multigetlist_t(3N)
-
See
fn_attr_multi_get.3n
- fn_namelist_destroy(3N)
-
See
fn_ctx_list_names.3n
- fn_namelist_next(3N)
-
See
fn_ctx_list_names.3n
- FN_namelist_t(3N)
-
See
fn_ctx_list_names.3n
- fn_ref_addr_assign(3N)
-
See
FN_ref_addr_t.3n
- fn_ref_addr_copy(3N)
-
See
FN_ref_addr_t.3n
- fn_ref_addrcount(3N)
-
See
FN_ref_t.3n
- fn_ref_addr_create(3N)
-
See
FN_ref_addr_t.3n
- fn_ref_addr_data(3N)
-
See
FN_ref_addr_t.3n
- fn_ref_addr_description(3N)
-
See
FN_ref_addr_t.3n
- fn_ref_addr_destroy(3N)
-
See
FN_ref_addr_t.3n
- fn_ref_addr_length(3N)
-
See
FN_ref_addr_t.3n
- FN_ref_addr_t.3n
-
an address in an XFN reference
- fn_ref_addr_type(3N)
-
See
FN_ref_addr_t.3n
- fn_ref_append_addr(3N)
-
See
FN_ref_t.3n
- fn_ref_assign(3N)
-
See
FN_ref_t.3n
- fn_ref_copy(3N)
-
See
FN_ref_t.3n
- fn_ref_create(3N)
-
See
FN_ref_t.3n
- fn_ref_create_link(3N)
-
See
FN_ref_t.3n
- fn_ref_delete_addr(3N)
-
See
FN_ref_t.3n
- fn_ref_delete_all(3N)
-
See
FN_ref_t.3n
- fn_ref_description(3N)
-
See
FN_ref_t.3n
- fn_ref_destroy(3N)
-
See
FN_ref_t.3n
- fn_ref_first(3N)
-
See
FN_ref_t.3n
- fn_ref_insert_addr(3N)
-
See
FN_ref_t.3n
- fn_ref_is_link(3N)
-
See
FN_ref_t.3n
- fn_ref_link_name(3N)
-
See
FN_ref_t.3n
- fn_ref_next(3N)
-
See
FN_ref_t.3n
- fn_ref_prepend_addr(3N)
-
See
FN_ref_t.3n
- FN_ref_t.3n
-
an XFN reference
- fn_ref_type(3N)
-
See
FN_ref_t.3n
- fn_status_advance_by_name(3N)
-
See
FN_status_t.3n
- fn_status_append_remaining_name(3N)
-
See
FN_status_t.3n
- fn_status_append_resolved_name(3N)
-
See
FN_status_t.3n
- fn_status_assign(3N)
-
See
FN_status_t.3n
- fn_status_code(3N)
-
See
FN_status_t.3n
- fn_status_copy(3N)
-
See
FN_status_t.3n
- fn_status_create(3N)
-
See
FN_status_t.3n
- fn_status_description(3N)
-
See
FN_status_t.3n
- fn_status_destroy(3N)
-
See
FN_status_t.3n
- fn_status_diagnostic_message(3N)
-
See
FN_status_t.3n
- fn_status_is_success(3N)
-
See
FN_status_t.3n
- fn_status_link_code(3N)
-
See
FN_status_t.3n
- fn_status_link_diagnostic_message(3N)
-
See
FN_status_t.3n
- fn_status_link_remaining_name(3N)
-
See
FN_status_t.3n
- fn_status_link_resolved_name(3N)
-
See
FN_status_t.3n
- fn_status_link_resolved_ref(3N)
-
See
FN_status_t.3n
- fn_status_remaining_name(3N)
-
See
FN_status_t.3n
- fn_status_resolved_name(3N)
-
See
FN_status_t.3n
- fn_status_resolved_ref(3N)
-
See
FN_status_t.3n
- fn_status_set(3N)
-
See
FN_status_t.3n
- fn_status_set_code(3N)
-
See
FN_status_t.3n
- fn_status_set_diagnostic_message(3N)
-
See
FN_status_t.3n
- fn_status_set_link_code(3N)
-
See
FN_status_t.3n
- fn_status_set_link_diagnostic_message(3N)
-
See
FN_status_t.3n
- fn_status_set_link_remaining_name(3N)
-
See
FN_status_t.3n
- fn_status_set_link_resolved_name(3N)
-
See
FN_status_t.3n
- fn_status_set_link_resolved_ref(3N)
-
See
FN_status_t.3n
- fn_status_set_remaining_name(3N)
-
See
FN_status_t.3n
- fn_status_set_resolved_name(3N)
-
See
FN_status_t.3n
- fn_status_set_resolved_ref(3N)
-
See
FN_status_t.3n
- fn_status_set_success(3N)
-
See
FN_status_t.3n
- FN_status_t.3n
-
an XFN status object
- fn_string_assign(3N)
-
See
FN_string_t.3n
- fn_string_bytecount(3N)
-
See
FN_string_t.3n
- fn_string_charcount(3N)
-
See
FN_string_t.3n
- fn_string_code_set(3N)
-
See
FN_string_t.3n
- fn_string_compare(3N)
-
See
FN_string_t.3n
- fn_string_compare_substring(3N)
-
See
FN_string_t.3n
- fn_string_contents(3N)
-
See
FN_string_t.3n
- fn_string_copy(3N)
-
See
FN_string_t.3n
- fn_string_create(3N)
-
See
FN_string_t.3n
- fn_string_destroy(3N)
-
See
FN_string_t.3n
- fn_string_from_composite_name(3N)
-
See
FN_composite_name_t.3n
- fn_string_from_compound_name(3N)
-
See
FN_compound_name_t.3n
- fn_string_from_contents(3N)
-
See
FN_string_t.3n
- fn_string_from_str(3N)
-
See
FN_string_t.3n
- fn_string_from_strings(3N)
-
See
FN_string_t.3n
- fn_string_from_str_n(3N)
-
See
FN_string_t.3n
- fn_string_from_substring(3N)
-
See
FN_string_t.3n
- fn_string_is_empty(3N)
-
See
FN_string_t.3n
- fn_string_next_substring(3N)
-
See
FN_string_t.3n
- fn_string_prev_substring(3N)
-
See
FN_string_t.3n
- fn_string_str(3N)
-
See
FN_string_t.3n
- FN_string_t.3n
-
a character string
- fn_valuelist_destroy(3N)
-
See
fn_attr_get_values.3n
- fn_valuelist_next(3N)
-
See
fn_attr_get_values.3n
- FN_valuelist_t(3N)
-
See
fn_attr_get_values.3n
- fopen.3b
-
open a stream
- fopen.3s
-
open a stream
- form_cursor.3x
-
position forms window cursor
- form_data.3x
-
tell if forms field has off-screen data ahead or behind
- form_driver.3x
-
command processor for the forms subsystem
- form_field.3x
-
connect fields to forms
- form_field_attributes.3x
-
format the general display attributes of forms
- form_field_buffer.3x
-
set and get forms field attributes
- form_field_info.3x
-
get forms field characteristics
- form_field_just.3x
-
format the general appearance of forms
- form_field_new.3x
-
create and destroy forms fields
- form_field_opts.3x
-
forms field option routines
- form_fields(3X)
-
See
form_field.3x
- form_fieldtype.3x
-
forms fieldtype routines
- form_field_userptr.3x
-
associate application data with forms
- form_field_validation.3x
-
forms field data type validation
- form_hook.3x
-
assign application-specific routines for invocation by forms
- form_init(3X)
-
See
form_hook.3x
- form_new.3x
-
create and destroy forms
- form_new_page.3x
-
forms pagination
- form_opts.3x
-
forms option routines
- form_opts_off(3X)
-
See
form_opts.3x
- form_opts_on(3X)
-
See
form_opts.3x
- form_page.3x
-
set forms current page and field
- form_post.3x
-
write or erase forms from associated subwindows
- forms.3x
-
character based forms package
- form_sub(3X)
-
See
form_win.3x
- form_term(3X)
-
See
form_hook.3x
- form_userptr.3x
-
associate application data with forms
- form_win.3x
-
forms window and subwindow association routines
- fpclass(3C)
-
See
isnan.3c
- fpgetmask(3C)
-
See
fpgetround.3c
- fpgetround.3c
-
IEEE floating-point environment control
- fpgetsticky(3C)
-
See
fpgetround.3c
- fprintf(3B)
-
See
printf.3b
- fprintf(3S)
-
See
printf.3s
- fpsetmask(3C)
-
See
fpgetround.3c
- fpsetround(3C)
-
See
fpgetround.3c
- fpsetsticky(3C)
-
See
fpgetround.3c
- fputc(3S)
-
See
putc.3s
- fputs(3S)
-
See
puts.3s
- fputwc(3I)
-
See
putwc.3i
- fputws(3I)
-
See
putws.3i
- fread.3s
-
buffered binary input/output
- free(3C)
-
See
malloc.3c
- free(3X)
-
See
bsdmalloc.3x
- free(3X)
-
See
malloc.3x
- free(3X)
-
See
mapmalloc.3x
- free_field(3X)
-
See
form_field_new.3x
- free_fieldtype(3X)
-
See
form_fieldtype.3x
- free_form(3X)
-
See
form_new.3x
- free_item(3X)
-
See
menu_item_new.3x
- free_menu(3X)
-
See
menu_new.3x
- freenetconfigent(3N)
-
See
getnetconfig.3n
- freopen(3B)
-
See
fopen.3b
- freopen(3S)
-
See
fopen.3s
- frexp.3c
-
manipulate parts of floating-point numbers
- fscanf(3S)
-
See
scanf.3s
- fseek.3s
-
reposition a file pointer in a stream
- fsetpos.3c
-
reposition a file pointer in a stream
- fsync.3c
-
synchronize a file's in-memory state with that on the physical medium
- ftell(3S)
-
See
fseek.3s
- ftime.3c
-
get date and time
- ftok(3C)
-
See
stdipc.3c
- ftrylockfile(3S)
-
See
flockfile.3s
- ftruncate(3C)
-
See
truncate.3c
- ftw.3c
-
walk a file tree
- func_to_decimal(3)
-
See
string_to_decimal.3
- funlockfile(3S)
-
See
flockfile.3s
- fwrite(3S)
-
See
fread.3s
- gamma(3M)
-
See
lgamma.3m
- gamma_r(3M)
-
See
lgamma.3m
- gconvert(3)
-
See
econvert.3
- gcvt(3)
-
See
econvert.3
- gcvt(3C)
-
See
ecvt.3c
- getacdir(3)
-
See
getacinfo.3
- getacflg(3)
-
See
getacinfo.3
- getacinfo.3
-
get audit control file information
- getacmin(3)
-
See
getacinfo.3
- getacna(3)
-
See
getacinfo.3
- getauclassent.3
-
get audit_class entry
- getauclassent_r(3)
-
See
getauclassent.3
- getauclassnam(3)
-
See
getauclassent.3
- getauclassnam_r(3)
-
See
getauclassent.3
- getauditflags.3
-
convert audit flag specifications
- getauditflagsbin(3)
-
See
getauditflags.3
- getauditflagschar(3)
-
See
getauditflags.3
- getauevent.3
-
get audit_user entry
- getauevent_r(3)
-
See
getauevent.3
- getauevnam(3)
-
See
getauevent.3
- getauevnam_r(3)
-
See
getauevent.3
- getauevnonam(3)
-
See
getauevent.3
- getauevnum(3)
-
See
getauevent.3
- getauevnum_r(3)
-
See
getauevent.3
- getauuserent(3)
-
See
getauusernam.3
- getauusernam.3
-
get audit_user entry
- getbegyx(3X)
-
See
curs_getyx.3x
- getc.3s
-
get character or word from a stream
- getch(3X)
-
See
curs_getch.3x
- getchar(3S)
-
See
getc.3s
- getchar_unlocked(3S)
-
See
getc.3s
- getc_unlocked(3S)
-
See
getc.3s
- getcwd.3c
-
get pathname of current working directory
- getdate.3c
-
convert user format date and time
- getdtablesize.3c
-
get file descriptor table size
- getenv.3c
-
return value for environment name
- getfauditflags.3
-
generates the process audit state
- getgrent(3C)
-
See
getgrnam.3c
- getgrent_r(3C)
-
See
getgrnam.3c
- getgrgid(3C)
-
See
getgrnam.3c
- getgrgid_r(3C)
-
See
getgrnam.3c
- getgrnam.3c
-
get group entry
- getgrnam_r(3C)
-
See
getgrnam.3c
- gethostbyaddr(3N)
-
See
gethostbyname.3n
- gethostbyaddr_r(3N)
-
See
gethostbyname.3n
- gethostbyname.3n
-
get network host entry
- gethostbyname_r(3N)
-
See
gethostbyname.3n
- gethostent(3N)
-
See
gethostbyname.3n
- gethostent_r(3N)
-
See
gethostbyname.3n
- gethostid.3c
-
get unique identifier of current host
- gethostname.3c
-
get/set name of current host
- gethrtime.3c
-
get high resolution time
- gethrvtime(3C)
-
See
gethrtime.3c
- getlogin.3c
-
get login name
- getlogin_r(3C)
-
See
getlogin.3c
- getmaxyx(3X)
-
See
curs_getyx.3x
- getmntany(3C)
-
See
getmntent.3c
- getmntent.3c
-
get mnttab file information
- get_myaddress(3N)
-
See
rpc_soc.3n
- getnetbyaddr(3N)
-
See
getnetbyname.3n
- getnetbyaddr_r(3N)
-
See
getnetbyname.3n
- getnetbyname.3n
-
get network entry
- getnetbyname_r(3N)
-
See
getnetbyname.3n
- getnetconfig.3n
-
get network configuration database entry
- getnetconfigent(3N)
-
See
getnetconfig.3n
- getnetent(3N)
-
See
getnetbyname.3n
- getnetent_r(3N)
-
See
getnetbyname.3n
- getnetgrent.3n
-
get network group entry
- getnetgrent_r(3N)
-
See
getnetgrent.3n
- getnetname(3N)
-
See
secure_rpc.3n
- getnetpath.3n
-
get /etc/netconfig entry corresponding to NETPATH component
- getnwstr(3X)
-
See
curs_getwstr.3x
- getopt.3c
-
get option letter from argument vector
- getpagesize.3c
-
get system page size
- getparyx(3X)
-
See
curs_getyx.3x
- getpass.3c
-
read a password
- getpeername.3n
-
get name of connected peer
- getpriority.3c
-
get/set scheduling priority for process, process group or user
- getprotobyname.3n
-
get protocol entry
- getprotobyname_r(3N)
-
See
getprotobyname.3n
- getprotobynumber(3N)
-
See
getprotobyname.3n
- getprotobynumber_r(3N)
-
See
getprotobyname.3n
- getprotoent(3N)
-
See
getprotobyname.3n
- getprotoent_r(3N)
-
See
getprotobyname.3n
- getpublickey.3n
-
retrieve public or secret key
- getpw.3c
-
get passwd entry from UID
- getpwent(3C)
-
See
getpwnam.3c
- getpwent_r(3C)
-
See
getpwnam.3c
- getpwnam.3c
-
get password entry
- getpwnam_r(3C)
-
See
getpwnam.3c
- getpwuid(3C)
-
See
getpwnam.3c
- getpwuid_r(3C)
-
See
getpwnam.3c
- getrpcbyname.3n
-
get RPC entry
- getrpcbyname_r(3N)
-
See
getrpcbyname.3n
- getrpcbynumber(3N)
-
See
getrpcbyname.3n
- getrpcbynumber_r(3N)
-
See
getrpcbyname.3n
- getrpcent(3N)
-
See
getrpcbyname.3n
- getrpcent_r(3N)
-
See
getrpcbyname.3n
- getrpcport(3N)
-
See
rpc_soc.3n
- getrusage.3c
-
get information about resource utilization
- gets.3s
-
get a string from a stream
- getsecretkey(3N)
-
See
getpublickey.3n
- getservbyname.3n
-
get service entry
- getservbyname_r(3N)
-
See
getservbyname.3n
- getservbyport(3N)
-
See
getservbyname.3n
- getservbyport_r(3N)
-
See
getservbyname.3n
- getservent(3N)
-
See
getservbyname.3n
- getservent_r(3N)
-
See
getservbyname.3n
- getsockname.3n
-
get socket name
- getsockopt.3n
-
get and set options on sockets
- getspent(3C)
-
See
getspnam.3c
- getspent_r(3C)
-
See
getspnam.3c
- getspnam.3c
-
get password entry
- getspnam_r(3C)
-
See
getspnam.3c
- getstr(3X)
-
See
curs_getstr.3x
- getsubopt.3c
-
parse suboptions from a string
- getsyx(3X)
-
See
curs_kernel.3x
- gettext.3i
-
message handling functions
- gettimeofday.3b
-
get or set the date and time
- gettimeofday.3c
-
get or set the date and time
- gettxt.3c
-
retrieve a text string
- getusershell.3c
-
get legal user shells
- getutent.3c
-
access utmp file entry
- getutid(3C)
-
See
getutent.3c
- getutline(3C)
-
See
getutent.3c
- getutmp(3C)
-
See
getutxent.3c
- getutmpx(3C)
-
See
getutxent.3c
- getutxent.3c
-
access utmpx file entry
- getutxid(3C)
-
See
getutxent.3c
- getutxline(3C)
-
See
getutxent.3c
- getvfsany(3C)
-
See
getvfsent.3c
- getvfsent.3c
-
get vfstab file entry
- getvfsfile(3C)
-
See
getvfsent.3c
- getvfsspec(3C)
-
See
getvfsent.3c
- getw(3S)
-
See
getc.3s
- getwc.3i
-
convert EUC character from the stream to Process Code
- getwch(3X)
-
See
curs_getwch.3x
- getwchar(3I)
-
See
getwc.3i
- getwd.3c
-
get current working directory pathname
- getwidth.3i
-
get codeset information
- getwin(3X)
-
See
curs_util.3x
- getws.3i
-
convert a string of EUC characters from the stream to Process Code
- getwstr(3X)
-
See
curs_getwstr.3x
- getyx(3X)
-
See
curs_getyx.3x
- glob.3c
-
generate path names matching a pattern
- globfree(3C)
-
See
glob.3c
- gmatch.3g
-
shell global pattern matching
- gmtime(3C)
-
See
ctime.3c
- gmtime_r(3C)
-
See
ctime.3c
- grantpt.3c
-
grant access to the slave pseudo-terminal device
- gsignal(3C)
-
See
ssignal.3c
- halfdelay(3X)
-
See
curs_inopts.3x
- has_colors(3X)
-
See
curs_color.3x
- has_ic(3X)
-
See
curs_termattrs.3x
- has_il(3X)
-
See
curs_termattrs.3x
- hasmntopt(3C)
-
See
getmntent.3c
- havedisk(3N)
-
See
rstat.3n
- hcreate(3C)
-
See
hsearch.3c
- hdestroy(3C)
-
See
hsearch.3c
- hide_panel(3X)
-
See
panel_show.3x
- host2netname(3N)
-
See
secure_rpc.3n
- hsearch.3c
-
manage hash search tables
- htonl(3N)
-
See
byteorder.3n
- htons(3N)
-
See
byteorder.3n
- hyperbolic.3m
-
hyperbolic functions
- hypot.3m
-
Euclidean distance
- iconv.3
-
code conversion function
- iconv_close.3
-
code conversion deallocation function
- iconv_open.3
-
code conversion allocation function
- idcok(3X)
-
See
curs_outopts.3x
- idlok(3X)
-
See
curs_outopts.3x
- ieee_functions.3m
-
appendix and related miscellaneous functions for IEEE arithmetic
- ieee_test.3m
-
IEEE test functions for verifying standard compliance
- ilogb(3M)
-
See
ieee_functions.3m
- immedok(3X)
-
See
curs_outopts.3x
- inch(3X)
-
See
curs_inch.3x
- inchnstr(3X)
-
See
curs_inchstr.3x
- inchstr(3X)
-
See
curs_inchstr.3x
- index.3c
-
string operations
- inet.3n
-
Internet address manipulation
- inet_addr(3N)
-
See
inet.3n
- inet_lnaof(3N)
-
See
inet.3n
- inet_makeaddr(3N)
-
See
inet.3n
- inet_netof(3N)
-
See
inet.3n
- inet_network(3N)
-
See
inet.3n
- inet_ntoa(3N)
-
See
inet.3n
- init_color(3X)
-
See
curs_color.3x
- initgroups.3c
-
initialize the supplementary group access list
- init_pair(3X)
-
See
curs_color.3x
- initscr(3X)
-
See
curs_initscr.3x
- initstate(3C)
-
See
random.3c
- innetgr(3N)
-
See
getnetgrent.3n
- innstr(3X)
-
See
curs_instr.3x
- innwstr(3X)
-
See
curs_inwstr.3x
- insch(3X)
-
See
curs_insch.3x
- insdelln(3X)
-
See
curs_deleteln.3x
- insertln(3X)
-
See
curs_deleteln.3x
- insnstr(3X)
-
See
curs_insstr.3x
- insnwstr(3X)
-
See
curs_inswstr.3x
- insque.3c
-
insert/remove element from a queue
- insstr(3X)
-
See
curs_insstr.3x
- instr(3X)
-
See
curs_instr.3x
- inswch(3X)
-
See
curs_inswch.3x
- inswstr(3X)
-
See
curs_inswstr.3x
- intrflush(3X)
-
See
curs_inopts.3x
- inwch(3X)
-
See
curs_inwch.3x
- inwchnstr(3X)
-
See
curs_inwchstr.3x
- inwchstr(3X)
-
See
curs_inwchstr.3x
- inwstr(3X)
-
See
curs_inwstr.3x
- isalnum(3C)
-
See
ctype.3c
- isalpha(3C)
-
See
ctype.3c
- isascii(3C)
-
See
ctype.3c
- isastream.3c
-
test a file descriptor
- isatty(3C)
-
See
ttyname.3c
- iscntrl(3C)
-
See
ctype.3c
- isdigit(3C)
-
See
ctype.3c
- isencrypt.3g
-
determine whether a buffer of characters is encrypted
- isendwin(3X)
-
See
curs_initscr.3x
- isenglish(3I)
-
See
iswalpha.3i
- isgraph(3C)
-
See
ctype.3c
- isideogram(3I)
-
See
iswalpha.3i
- is_linetouched(3X)
-
See
curs_touch.3x
- islower(3C)
-
See
ctype.3c
- isnan.3c
-
determine type of floating-point number
- isnan(3M)
-
See
ieee_functions.3m
- isnand(3C)
-
See
isnan.3c
- isnanf(3C)
-
See
isnan.3c
- isnumber(3I)
-
See
iswalpha.3i
- isphonogram(3I)
-
See
iswalpha.3i
- isprint(3C)
-
See
ctype.3c
- ispunct(3C)
-
See
ctype.3c
- isspace(3C)
-
See
ctype.3c
- isspecial(3I)
-
See
iswalpha.3i
- isupper(3C)
-
See
ctype.3c
- iswalnum(3I)
-
See
iswalpha.3i
- iswalpha.3i
-
Process Code character classification macros and functions
- iswascii(3I)
-
See
iswalpha.3i
- iswcntrl(3I)
-
See
iswalpha.3i
- iswctype.3i
-
test character for specified class
- iswdigit(3I)
-
See
iswalpha.3i
- iswgraph(3I)
-
See
iswalpha.3i
- is_wintouched(3X)
-
See
curs_touch.3x
- iswlower(3I)
-
See
iswalpha.3i
- iswprint(3I)
-
See
iswalpha.3i
- iswpunct(3I)
-
See
iswalpha.3i
- iswspace(3I)
-
See
iswalpha.3i
- iswupper(3I)
-
See
iswalpha.3i
- iswxdigit(3I)
-
See
iswalpha.3i
- isxdigit(3C)
-
See
ctype.3c
- item_count(3X)
-
See
menu_items.3x
- item_description(3X)
-
See
menu_item_name.3x
- item_index(3X)
-
See
menu_item_current.3x
- item_init(3X)
-
See
menu_hook.3x
- item_name(3X)
-
See
menu_item_name.3x
- item_opts(3X)
-
See
menu_item_opts.3x
- item_opts_off(3X)
-
See
menu_item_opts.3x
- item_opts_on(3X)
-
See
menu_item_opts.3x
- item_term(3X)
-
See
menu_hook.3x
- item_userptr(3X)
-
See
menu_item_userptr.3x
- item_value(3X)
-
See
menu_item_value.3x
- item_visible(3X)
-
See
menu_item_visible.3x
- j0(3M)
-
See
bessel.3m
- j1(3M)
-
See
bessel.3m
- jn(3M)
-
See
bessel.3m
- jrand48(3C)
-
See
drand48.3c
- kerberos.3n
-
Kerberos authentication library
- kerberos_rpc.3n
-
library routines for remote procedure calls using Kerberos authentication
- key_decryptsession(3N)
-
See
secure_rpc.3n
- key_encryptsession(3N)
-
See
secure_rpc.3n
- key_gendes(3N)
-
See
secure_rpc.3n
- keyname(3X)
-
See
curs_util.3x
- keypad(3X)
-
See
curs_inopts.3x
- key_secretkey_is_set(3N)
-
See
secure_rpc.3n
- key_setsecret(3N)
-
See
secure_rpc.3n
- killchar(3X)
-
See
curs_termattrs.3x
- killpg.3c
-
send signal to a process group
- krb_get_admhst(3N)
-
See
krb_realmofhost.3n
- krb_get_cred(3N)
-
See
kerberos.3n
- krb_get_krbhst(3N)
-
See
krb_realmofhost.3n
- krb_get_lrealm(3N)
-
See
krb_realmofhost.3n
- krb_get_phost(3N)
-
See
krb_realmofhost.3n
- krb_kntoln(3N)
-
See
kerberos.3n
- krb_mk_err(3N)
-
See
kerberos.3n
- krb_mk_req(3N)
-
See
kerberos.3n
- krb_mk_safe(3N)
-
See
kerberos.3n
- krb_net_read(3N)
-
See
krb_sendauth.3n
- krb_net_write(3N)
-
See
krb_sendauth.3n
- krb_rd_err(3N)
-
See
kerberos.3n
- krb_rd_req(3N)
-
See
kerberos.3n
- krb_rd_safe(3N)
-
See
kerberos.3n
- krb_realmofhost.3n
-
additional Kerberos utility routines
- krb_recvauth(3N)
-
See
krb_sendauth.3n
- krb_sendauth.3n
-
Kerberos routines for sending authentication via network stream sockets
- krb_set_key(3N)
-
See
kerberos.3n
- krb_set_tkt_string.3n
-
set Kerberos ticket cache file name
- kstat.3k
-
kernel statistics facility
- kstat_chain_update.3k
-
update the kstat header chain
- kstat_close(3K)
-
See
kstat_open.3k
- kstat_data_lookup(3K)
-
See
kstat_lookup.3k
- kstat_lookup.3k
-
find a kstat by name
- kstat_open.3k
-
initialize kernel statistics facility
- kstat_read.3k
-
read or write kstat data
- kstat_write(3K)
-
See
kstat_read.3k
- kvm_close(3K)
-
See
kvm_open.3k
- kvm_getcmd(3K)
-
See
kvm_getu.3k
- kvm_getproc(3K)
-
See
kvm_nextproc.3k
- kvm_getu.3k
-
get the u-area or invocation arguments for a process
- kvm_kread(3K)
-
See
kvm_read.3k
- kvm_kwrite(3K)
-
See
kvm_read.3k
- kvm_nextproc.3k
-
read system process structures
- kvm_nlist.3k
-
get entries from kernel symbol table
- kvm_open.3k
-
specify a kernel to examine
- kvm_read.3k
-
copy data to or from a kernel image or running system
- kvm_setproc(3K)
-
See
kvm_nextproc.3k
- kvm_uread(3K)
-
See
kvm_read.3k
- kvm_uwrite(3K)
-
See
kvm_read.3k
- kvm_write(3K)
-
See
kvm_read.3k
- l64a(3C)
-
See
a64l.3c
- label(3)
-
See
plot.3
- labs(3C)
-
See
abs.3c
- lckpwdf.3c
-
manipulate shadow password database lock file
- lcong48(3C)
-
See
drand48.3c
- ldexp(3C)
-
See
frexp.3c
- ldiv(3C)
-
See
div.3c
- leaveok(3X)
-
See
curs_outopts.3x
- lfind(3C)
-
See
lsearch.3c
- lfmt.3c
-
display error message in standard format and pass to logging and monitoring services
- lgamma.3m
-
log gamma function
- lgamma_r(3M)
-
See
lgamma.3m
- libpthread(3T)
-
See
threads.3t
- libthread(3T)
-
See
threads.3t
- libthread_db.3t
-
interface to libthread threads information
- line(3)
-
See
plot.3
- link_field(3X)
-
See
form_field_new.3x
- link_fieldtype(3X)
-
See
form_fieldtype.3x
- linmod(3)
-
See
plot.3
- lio_listio.3r
-
list directed I/O
- listen.3n
-
listen for connections on a socket
- llabs(3C)
-
See
abs.3c
- lldiv(3C)
-
See
div.3c
- lltostr(3C)
-
See
strtol.3c
- localeconv.3c
-
get numeric formatting information
- localtime(3C)
-
See
ctime.3c
- localtime_r(3C)
-
See
ctime.3c
- lockf.3c
-
record locking on files
- log(3M)
-
See
exp.3m
- log10(3M)
-
See
exp.3m
- log1p(3M)
-
See
exp.3m
- logb(3C)
-
See
frexp.3c
- logb(3M)
-
See
ieee_test.3m
- _longjmp(3B)
-
See
setjmp.3b
- longjmp(3B)
-
See
setjmp.3b
- longjmp(3C)
-
See
setjmp.3c
- longname(3X)
-
See
curs_termattrs.3x
- lrand48(3C)
-
See
drand48.3c
- lsearch.3c
-
linear search and update
- madvise.3
-
provide advice to VM system
- maillock.3x
-
manage lockfile for user's mailbox
- major(3C)
-
See
makedev.3c
- makecontext.3c
-
manipulate user contexts
- makedev.3c
-
manage a device number
- mallinfo(3X)
-
See
malloc.3x
- malloc.3c
-
memory allocator
- malloc.3x
-
memory allocator
- malloc(3X)
-
See
bsdmalloc.3x
- mallopt(3X)
-
See
malloc.3x
- mapmalloc.3x
-
memory allocator
- matherr.3m
-
math library exception-handling function
- mbchar.3c
-
multibyte character handling
- mblen(3C)
-
See
mbchar.3c
- mbstowcs(3C)
-
See
mbstring.3c
- mbstring.3c
-
multibyte string functions
- mbtowc(3C)
-
See
mbchar.3c
- mctl.3b
-
memory management control
- media_findname.3x
-
convert a supplied name into an absolute pathname that can be used to access removable media
- media_getattr.3x
-
get and set media attributes
- media_setattr(3X)
-
See
media_getattr.3x
- memalign(3C)
-
See
malloc.3c
- memccpy(3C)
-
See
memory.3c
- memchr(3C)
-
See
memory.3c
- memcmp(3C)
-
See
memory.3c
- memcpy(3C)
-
See
memory.3c
- memmove(3C)
-
See
memory.3c
- memory.3c
-
memory operations
- memset(3C)
-
See
memory.3c
- menu_attributes.3x
-
control menus display attributes
- menu_back(3X)
-
See
menu_attributes.3x
- menu_cursor.3x
-
correctly position a menus cursor
- menu_driver.3x
-
command processor for the menus subsystem
- menu_fore(3X)
-
See
menu_attributes.3x
- menu_format.3x
-
set and get maximum numbers of rows and columns in menus
- menu_grey(3X)
-
See
menu_attributes.3x
- menu_hook.3x
-
assign application-specific routines for automatic invocation by menus
- menu_init(3X)
-
See
menu_hook.3x
- menu_item_current.3x
-
set and get current menus items
- menu_item_name.3x
-
get menus item name and description
- menu_item_new.3x
-
create and destroy menus items
- menu_item_opts.3x
-
menus item option routines
- menu_items.3x
-
connect and disconnect items to and from menus
- menu_item_userptr.3x
-
associate application data with menus items
- menu_item_value.3x
-
set and get menus item values
- menu_item_visible.3x
-
tell if menus item is visible
- menu_mark.3x
-
menus mark string routines
- menu_new.3x
-
create and destroy menus
- menu_opts.3x
-
menus option routines
- menu_opts_off(3X)
-
See
menu_opts.3x
- menu_opts_on(3X)
-
See
menu_opts.3x
- menu_pad(3X)
-
See
menu_attributes.3x
- menu_pattern.3x
-
set and get menus pattern match buffer
- menu_post.3x
-
write or erase menus from associated subwindows
- menus.3x
-
character based menus package
- menu_sub(3X)
-
See
menu_win.3x
- menu_term(3X)
-
See
menu_hook.3x
- menu_userptr.3x
-
associate application data with menus
- menu_win.3x
-
menus window and subwindow association routines
- meta(3X)
-
See
curs_inopts.3x
- minor(3C)
-
See
makedev.3c
- mkdirp.3g
-
create, remove directories in a path
- mkfifo.3c
-
create a new FIFO
- mktemp.3c
-
make a unique file name
- mktime.3c
-
converts a tm structure to a calendar time
- mlock.3c
-
lock (or unlock) pages in memory
- mlockall.3c
-
lock or unlock address space
- modf(3C)
-
See
frexp.3c
- modff(3C)
-
See
frexp.3c
- monitor.3c
-
prepare process execution profile
- move(3)
-
See
plot.3
- move(3X)
-
See
curs_move.3x
- move_field(3X)
-
See
form_field.3x
- movenextch(3X)
-
See
curs_alecompat.3x
- move_panel(3X)
-
See
panel_move.3x
- moveprevch(3X)
-
See
curs_alecompat.3x
- mq_close.3r
-
close a message queue
- mq_getattr(3R)
-
See
mq_setattr.3r
- mq_notify.3r
-
notify process (or thread) that a message is available on a queue
- mq_open.3r
-
open a message queue
- mq_receive.3r
-
receive a message from a message queue
- mq_send.3r
-
send a message to a message queue
- mq_setattr.3r
-
set/get message queue attributes
- mq_unlink.3r
-
remove a message queue
- mrand48(3C)
-
See
drand48.3c
- msync.3c
-
synchronize memory with physical storage
- munlock(3C)
-
See
mlock.3c
- munlockall(3C)
-
See
mlockall.3c
- mutex.3t
-
mutual exclusion locks
- mutex_destroy(3T)
-
See
mutex.3t
- mutex_init(3T)
-
See
mutex.3t
- mutex_lock(3T)
-
See
mutex.3t
- mutex_trylock(3T)
-
See
mutex.3t
- mutex_unlock(3T)
-
See
mutex.3t
- mvaddch(3X)
-
See
curs_addch.3x
- mvaddchnstr(3X)
-
See
curs_addchstr.3x
- mvaddchstr(3X)
-
See
curs_addchstr.3x
- mvaddnstr(3X)
-
See
curs_addstr.3x
- mvaddnwstr(3X)
-
See
curs_addwstr.3x
- mvaddstr(3X)
-
See
curs_addstr.3x
- mvaddwch(3X)
-
See
curs_addwch.3x
- mvaddwchnstr(3X)
-
See
curs_addwchstr.3x
- mvaddwchstr(3X)
-
See
curs_addwchstr.3x
- mvaddwstr(3X)
-
See
curs_addwstr.3x
- mvcur(3X)
-
See
curs_terminfo.3x
- mvdelch(3X)
-
See
curs_delch.3x
- mvderwin(3X)
-
See
curs_window.3x
- mvgetch(3X)
-
See
curs_getch.3x
- mvgetnwstr(3X)
-
See
curs_getwstr.3x
- mvgetstr(3X)
-
See
curs_getstr.3x
- mvgetwch(3X)
-
See
curs_getwch.3x
- mvgetwstr(3X)
-
See
curs_getwstr.3x
- mvinch(3X)
-
See
curs_inch.3x
- mvinchnstr(3X)
-
See
curs_inchstr.3x
- mvinchstr(3X)
-
See
curs_inchstr.3x
- mvinnstr(3X)
-
See
curs_instr.3x
- mvinnwstr(3X)
-
See
curs_inwstr.3x
- mvinsch(3X)
-
See
curs_insch.3x
- mvinsnstr(3X)
-
See
curs_insstr.3x
- mvinsnwstr(3X)
-
See
curs_inswstr.3x
- mvinsstr(3X)
-
See
curs_insstr.3x
- mvinstr(3X)
-
See
curs_instr.3x
- mvinswch(3X)
-
See
curs_inswch.3x
- mvinswstr(3X)
-
See
curs_inswstr.3x
- mvinwch(3X)
-
See
curs_inwch.3x
- mvinwchnstr(3X)
-
See
curs_inwchstr.3x
- mvinwchstr(3X)
-
See
curs_inwchstr.3x
- mvinwstr(3X)
-
See
curs_inwstr.3x
- mvprintw(3X)
-
See
curs_printw.3x
- mvscanw(3X)
-
See
curs_scanw.3x
- mvwaddch(3X)
-
See
curs_addch.3x
- mvwaddchnstr(3X)
-
See
curs_addchstr.3x
- mvwaddchstr(3X)
-
See
curs_addchstr.3x
- mvwaddnstr(3X)
-
See
curs_addstr.3x
- mvwaddnwstr(3X)
-
See
curs_addwstr.3x
- mvwaddstr(3X)
-
See
curs_addstr.3x
- mvwaddwch(3X)
-
See
curs_addwch.3x
- mvwaddwchnstr(3X)
-
See
curs_addwchstr.3x
- mvwaddwchstr(3X)
-
See
curs_addwchstr.3x
- mvwaddwstr(3X)
-
See
curs_addwstr.3x
- mvwdelch(3X)
-
See
curs_delch.3x
- mvwgetch(3X)
-
See
curs_getch.3x
- mvwgetnwstr(3X)
-
See
curs_getwstr.3x
- mvwgetstr(3X)
-
See
curs_getstr.3x
- mvwgetwch(3X)
-
See
curs_getwch.3x
- mvwgetwstr(3X)
-
See
curs_getwstr.3x
- mvwin(3X)
-
See
curs_window.3x
- mvwinch(3X)
-
See
curs_inch.3x
- mvwinchnstr(3X)
-
See
curs_inchstr.3x
- mvwinchstr(3X)
-
See
curs_inchstr.3x
- mvwinnstr(3X)
-
See
curs_instr.3x
- mvwinnwstr(3X)
-
See
curs_inwstr.3x
- mvwinsch(3X)
-
See
curs_insch.3x
- mvwinsnstr(3X)
-
See
curs_insstr.3x
- mvwinsnwstr(3X)
-
See
curs_inswstr.3x
- mvwinsstr(3X)
-
See
curs_insstr.3x
- mvwinstr(3X)
-
See
curs_instr.3x
- mvwinswch(3X)
-
See
curs_inswch.3x
- mvwinswstr(3X)
-
See
curs_inswstr.3x
- mvwinwch(3X)
-
See
curs_inwch.3x
- mvwinwchnstr(3X)
-
See
curs_inwchstr.3x
- mvwinwchstr(3X)
-
See
curs_inwchstr.3x
- mvwinwstr(3X)
-
See
curs_inwstr.3x
- mvwprintw(3X)
-
See
curs_printw.3x
- mvwscanw(3X)
-
See
curs_scanw.3x
- nanosleep.3r
-
high resolution sleep
- napms(3X)
-
See
curs_kernel.3x
- nc_perror(3N)
-
See
getnetconfig.3n
- nc_sperror(3N)
-
See
getnetconfig.3n
- ndbm.3
-
data base subroutines
- netdir.3n
-
generic transport name-to-address translation
- netdir_free(3N)
-
See
netdir.3n
- netdir_getbyaddr(3N)
-
See
netdir.3n
- netdir_getbyname(3N)
-
See
netdir.3n
- netdir_mergeaddr(3N)
-
See
netdir.3n
- netdir_options(3N)
-
See
netdir.3n
- netdir_perror(3N)
-
See
netdir.3n
- netdir_sperror(3N)
-
See
netdir.3n
- netname2host(3N)
-
See
secure_rpc.3n
- netname2user(3N)
-
See
secure_rpc.3n
- new_field(3X)
-
See
form_field_new.3x
- new_fieldtype(3X)
-
See
form_fieldtype.3x
- new_form(3X)
-
See
form_new.3x
- new_item(3X)
-
See
menu_item_new.3x
- new_menu(3X)
-
See
menu_new.3x
- newpad(3X)
-
See
curs_pad.3x
- new_page(3X)
-
See
form_new_page.3x
- new_panel(3X)
-
See
panel_new.3x
- newterm(3X)
-
See
curs_initscr.3x
- newwin(3X)
-
See
curs_window.3x
- nextafter(3C)
-
See
frexp.3c
- nextafter(3M)
-
See
ieee_functions.3m
- nextkey(3B)
-
See
dbm.3b
- nftw(3C)
-
See
ftw.3c
- nice.3b
-
change priority of a process
- nis_add(3N)
-
See
nis_names.3n
- nis_add_entry(3N)
-
See
nis_tables.3n
- nis_addmember(3N)
-
See
nis_groups.3n
- nis_checkpoint(3N)
-
See
nis_ping.3n
- nis_clone_object(3N)
-
See
nis_subr.3n
- nis_creategroup(3N)
-
See
nis_groups.3n
- nis_db.3n
-
NIS+ Database access functions
- nis_destroygroup(3N)
-
See
nis_groups.3n
- nis_destroy_object(3N)
-
See
nis_subr.3n
- nis_dir_cmp(3N)
-
See
nis_subr.3n
- nis_domain_of(3N)
-
See
nis_subr.3n
- nis_error.3n
-
display NIS+ error messages
- nis_first_entry(3N)
-
See
nis_tables.3n
- nis_freenames(3N)
-
See
nis_subr.3n
- nis_freeresult(3N)
-
See
nis_names.3n
- nis_freeservlist(3N)
-
See
nis_server.3n
- nis_freetags(3N)
-
See
nis_server.3n
- nis_getnames(3N)
-
See
nis_subr.3n
- nis_getservlist(3N)
-
See
nis_server.3n
- nis_groups.3n
-
NIS+ group manipulation functions
- nis_ismember(3N)
-
See
nis_groups.3n
- nis_leaf_of(3N)
-
See
nis_subr.3n
- nis_lerror(3N)
-
See
nis_error.3n
- nis_list(3N)
-
See
nis_tables.3n
- nis_local_directory(3N)
-
See
nis_local_names.3n
- nis_local_group(3N)
-
See
nis_local_names.3n
- nis_local_host(3N)
-
See
nis_local_names.3n
- nis_local_names.3n
-
NIS+ local names
- nis_local_principal(3N)
-
See
nis_local_names.3n
- nis_lookup(3N)
-
See
nis_names.3n
- __nis_map_group(3N)
-
See
nis_groups.3n
- nis_map_group(3N)
-
See
nis_groups.3n
- nis_mkdir(3N)
-
See
nis_server.3n
- nis_modify(3N)
-
See
nis_names.3n
- nis_modify_entry(3N)
-
See
nis_tables.3n
- nis_name_of(3N)
-
See
nis_subr.3n
- nis_names.3n
-
NIS+ namespace functions
- nis_next_entry(3N)
-
See
nis_tables.3n
- nis_objects.3n
-
NIS+ object formats
- nis_perror(3N)
-
See
nis_error.3n
- nis_ping.3n
-
misc NIS+ log administration functions
- nis_print_group_entry(3N)
-
See
nis_groups.3n
- nis_print_object(3N)
-
See
nis_subr.3n
- nis_remove(3N)
-
See
nis_names.3n
- nis_remove_entry(3N)
-
See
nis_tables.3n
- nis_removemember(3N)
-
See
nis_groups.3n
- nis_rmdir(3N)
-
See
nis_server.3n
- nis_server.3n
-
miscellaneous NIS+ functions
- nis_servstate(3N)
-
See
nis_server.3n
- nis_sperrno(3N)
-
See
nis_error.3n
- nis_sperror(3N)
-
See
nis_error.3n
- nis_sperror_r(3N)
-
See
nis_error.3n
- nis_stats(3N)
-
See
nis_server.3n
- nis_subr.3n
-
NIS+ subroutines
- nis_tables.3n
-
NIS+ table functions
- nis_verifygroup(3N)
-
See
nis_groups.3n
- nl(3X)
-
See
curs_outopts.3x
- nlist.3b
-
get entries from symbol table
- nlist.3e
-
get entries from name list
- nl_langinfo.3c
-
language information
- nlsgetcall.3n
-
get client's data passed via the listener
- nlsprovider.3n
-
get name of transport provider
- nlsrequest.3n
-
format and send listener service request message
- nocbreak(3X)
-
See
curs_inopts.3x
- nodelay(3X)
-
See
curs_inopts.3x
- noecho(3X)
-
See
curs_inopts.3x
- nonl(3X)
-
See
curs_outopts.3x
- noqiflush(3X)
-
See
curs_inopts.3x
- noraw(3X)
-
See
curs_inopts.3x
- NOTE.3x
-
annotate source code with info for tools
- _NOTE(3X)
-
See
NOTE.3x
- notimeout(3X)
-
See
curs_inopts.3x
- nrand48(3C)
-
See
drand48.3c
- ntohl(3N)
-
See
byteorder.3n
- ntohs(3N)
-
See
byteorder.3n
- offsetof.3c
-
offset of structure member
- opendir(3C)
-
See
directory.3c
- openlog(3)
-
See
syslog.3
- openpl(3)
-
See
plot.3
- openvt(3)
-
See
plot.3
- overlay(3X)
-
See
curs_overlay.3x
- overwrite(3X)
-
See
curs_overlay.3x
- p2close(3G)
-
See
p2open.3g
- p2open.3g
-
open, close pipes to and from a command
- pair_content(3X)
-
See
curs_color.3x
- panel_above.3x
-
panels deck traversal primitives
- panel_below(3X)
-
See
panel_above.3x
- panel_hidden(3X)
-
See
panel_show.3x
- panel_move.3x
-
move a panels window on the virtual screen
- panel_new.3x
-
create and destroy panels
- panels.3x
-
character based panels package
- panel_show.3x
-
panels deck manipulation routines
- panel_top.3x
-
panels deck manipulation routines
- panel_update.3x
-
panels virtual screen refresh routine
- panel_userptr.3x
-
associate application data with a panels panel
- panel_window.3x
-
get or set the current window of a panels panel
- pathfind.3g
-
search for named file in named directories
- pclose(3S)
-
See
popen.3s
- pechochar(3X)
-
See
curs_pad.3x
- pechowchar(3X)
-
See
curs_pad.3x
- perror.3c
-
print system error messages
- pfmt.3c
-
display error message in standard format
- plock.3c
-
lock or unlock into memory process, text, or data
- plot.3
-
graphics interface
- pmap_getmaps(3N)
-
See
rpc_soc.3n
- pmap_getport(3N)
-
See
rpc_soc.3n
- pmap_rmtcall(3N)
-
See
rpc_soc.3n
- pmap_set(3N)
-
See
rpc_soc.3n
- pmap_unset(3N)
-
See
rpc_soc.3n
- pnoutrefresh(3X)
-
See
curs_pad.3x
- point(3)
-
See
plot.3
- popen.3s
-
initiate pipe to/from a process
- pos_form_cursor(3X)
-
See
form_cursor.3x
- pos_menu_cursor(3X)
-
See
menu_cursor.3x
- post_form(3X)
-
See
form_post.3x
- post_menu(3X)
-
See
menu_post.3x
- pow(3M)
-
See
exp.3m
- prefresh(3X)
-
See
curs_pad.3x
- printf.3b
-
formatted output conversion
- printf.3s
-
print formatted output
- printw(3X)
-
See
curs_printw.3x
- proc_service.3t
-
process service interface
- psiginfo(3C)
-
See
psignal.3c
- psignal.3b
-
system signal messages
- psignal.3c
-
system signal messages
- ps_lcontinue(3T)
-
See
proc_service.3t
- ps_lgetfpregs(3T)
-
See
proc_service.3t
- ps_lgetregs(3T)
-
See
proc_service.3t
- ps_lgetxregs(3T)
-
See
proc_service.3t
- ps_lgetxregsize(3T)
-
See
proc_service.3t
- ps_lsetfpregs(3T)
-
See
proc_service.3t
- ps_lsetregs(3T)
-
See
proc_service.3t
- ps_lsetxregs(3T)
-
See
proc_service.3t
- ps_lstop(3T)
-
See
proc_service.3t
- ps_pcontinue(3T)
-
See
proc_service.3t
- ps_pdread(3T)
-
See
proc_service.3t
- ps_pdwrite(3T)
-
See
proc_service.3t
- ps_pglobal_lookup(3T)
-
See
proc_service.3t
- ps_plog(3T)
-
See
proc_service.3t
- ps_pstop(3T)
-
See
proc_service.3t
- ps_ptread(3T)
-
See
proc_service.3t
- ps_ptwrite(3T)
-
See
proc_service.3t
- pthread_atfork.3t
-
register fork handlers
- pthread_attr_destroy(3T)
-
See
pthread_attr_init.3t
- pthread_attr_getdetachstate(3T)
-
See
pthread_attr_init.3t
- pthread_attr_getinheritsched(3T)
-
See
pthread_attr_init.3t
- pthread_attr_getschedparam(3T)
-
See
pthread_attr_init.3t
- pthread_attr_getschedpolicy(3T)
-
See
pthread_attr_init.3t
- pthread_attr_getscope(3T)
-
See
pthread_attr_init.3t
- pthread_attr_getstackaddr(3T)
-
See
pthread_attr_init.3t
- pthread_attr_getstacksize(3T)
-
See
pthread_attr_init.3t
- pthread_attr_init.3t
-
thread creation attributes
- pthread_attr_setdetachstate(3T)
-
See
pthread_attr_init.3t
- pthread_attr_setinheritsched(3T)
-
See
pthread_attr_init.3t
- pthread_attr_setschedparam(3T)
-
See
pthread_attr_init.3t
- pthread_attr_setschedpolicy(3T)
-
See
pthread_attr_init.3t
- pthread_attr_setscope(3T)
-
See
pthread_attr_init.3t
- pthread_attr_setstackaddr(3T)
-
See
pthread_attr_init.3t
- pthread_attr_setstacksize(3T)
-
See
pthread_attr_init.3t
- pthread_cancel(3T)
-
See
cancellation.3t
- pthread_cleanup_pop(3T)
-
See
cancellation.3t
- pthread_cleanup_push(3T)
-
See
cancellation.3t
- pthread_condattr_destroy(3T)
-
See
pthread_condattr_init.3t
- pthread_condattr_getpshared(3T)
-
See
pthread_condattr_init.3t
- pthread_condattr_init.3t
-
condition variable initialization attributes
- pthread_condattr_setpshared(3T)
-
See
pthread_condattr_init.3t
- pthread_cond_broadcast(3T)
-
See
condition.3t
- pthread_cond_destroy(3T)
-
See
condition.3t
- pthread_cond_init(3T)
-
See
condition.3t
- pthread_cond_signal(3T)
-
See
condition.3t
- pthread_cond_timedwait(3T)
-
See
condition.3t
- pthread_cond_wait(3T)
-
See
condition.3t
- pthread_create.3t
-
thread creation
- pthread_detach.3t
-
dynamically detaching a thread
- pthread_equal.3t
-
compare thread IDs
- pthread_exit.3t
-
thread termination
- pthread_getschedparam(3T)
-
See
pthread_setschedparam.3t
- pthread_getspecific(3T)
-
See
pthread_key_create.3t
- pthread_join.3t
-
wait for thread termination
- pthread_key_create.3t
-
thread-specific-data functions
- pthread_key_delete(3T)
-
See
pthread_key_create.3t
- pthread_kill.3t
-
send a signal to a thread
- pthread_mutexattr_destroy(3T)
-
See
pthread_mutexattr_init.3t
- pthread_mutexattr_getprioceiling(3T)
-
See
pthread_mutexattr_init.3t
- pthread_mutexattr_getprotocol(3T)
-
See
pthread_mutexattr_init.3t
- pthread_mutexattr_getpshared(3T)
-
See
pthread_mutexattr_init.3t
- pthread_mutexattr_init.3t
-
mutex initialization attributes
- pthread_mutexattr_setprioceiling(3T)
-
See
pthread_mutexattr_init.3t
- pthread_mutexattr_setprotocol(3T)
-
See
pthread_mutexattr_init.3t
- pthread_mutexattr_setpshared(3T)
-
See
pthread_mutexattr_init.3t
- pthread_mutex_destroy(3T)
-
See
mutex.3t
- pthread_mutex_getprioceiling(3T)
-
See
pthread_mutex_setprioceiling.3t
- pthread_mutex_init(3T)
-
See
mutex.3t
- pthread_mutex_lock(3T)
-
See
mutex.3t
- pthread_mutex_setprioceiling.3t
-
change the priority ceiling of a mutex
- pthread_mutex_trylock(3T)
-
See
mutex.3t
- pthread_mutex_unlock(3T)
-
See
mutex.3t
- pthread_once.3t
-
dynamic package initialization
- pthreads(3T)
-
See
threads.3t
- pthread_self.3t
-
get calling thread's ID
- pthread_setcancelstate(3T)
-
See
cancellation.3t
- pthread_setcanceltype(3T)
-
See
cancellation.3t
- pthread_setschedparam.3t
-
dynamic access to thread scheduling
- pthread_setspecific(3T)
-
See
pthread_key_create.3t
- pthread_sigmask.3t
-
change and/or examine calling thread's signal mask
- pthread_testcancel(3T)
-
See
cancellation.3t
- ptsname.3c
-
get name of the slave pseudo-terminal device
- publickey(3N)
-
See
getpublickey.3n
- putc.3s
-
put character or word on a stream
- putchar(3S)
-
See
putc.3s
- putchar_unlocked(3S)
-
See
putc.3s
- putc_unlocked(3S)
-
See
putc.3s
- putenv.3c
-
change or add value to environment
- putmntent(3C)
-
See
getmntent.3c
- putp(3X)
-
See
curs_terminfo.3x
- putpwent.3c
-
write password file entry
- puts.3s
-
put a string on a stream
- putspent.3c
-
write shadow password file entry
- pututline(3C)
-
See
getutent.3c
- pututxline(3C)
-
See
getutxent.3c
- putw(3S)
-
See
putc.3s
- putwc.3i
-
convert Process Code character to EUC and put on a stream
- putwchar(3I)
-
See
putwc.3i
- putwin(3X)
-
See
curs_util.3x
- putws.3i
-
convert a string of Process Code characters to EUC characters and put it on a stream
- qeconvert(3)
-
See
econvert.3
- qfconvert(3)
-
See
econvert.3
- qgconvert(3)
-
See
econvert.3
- qiflush(3X)
-
See
curs_inopts.3x
- qsort.3c
-
quick sort
- quadruple_to_decimal(3)
-
See
floating_to_decimal.3
- rac_drop(3N)
-
See
rpc_rac.3n
- rac_poll(3N)
-
See
rpc_rac.3n
- rac_recv(3N)
-
See
rpc_rac.3n
- rac_send(3N)
-
See
rpc_rac.3n
- raise.3c
-
send signal to program
- rand.3b
-
simple random number generator
- rand.3c
-
simple random-number generator
- random.3c
-
better random number generator; routines for changing generators
- rand_r(3C)
-
See
rand.3c
- raw(3X)
-
See
curs_inopts.3x
- rcmd.3n
-
routines for returning a stream to a remote command
- readdir.3b
-
read a directory entry
- readdir(3C)
-
See
directory.3c
- readdir_r(3C)
-
See
directory.3c
- read_vtoc.3x
-
read and write a disk's VTOC
- realloc(3C)
-
See
malloc.3c
- realloc(3X)
-
See
bsdmalloc.3x
- realloc(3X)
-
See
malloc.3x
- realloc(3X)
-
See
mapmalloc.3x
- realpath.3c
-
returns the real file name
- reboot.3c
-
reboot system or halt processor
- re_comp(3C)
-
See
regex.3c
- recv.3n
-
receive a message from a socket
- recvfrom(3N)
-
See
recv.3n
- recvmsg(3N)
-
See
recv.3n
- redrawwin(3X)
-
See
curs_refresh.3x
- re_exec(3C)
-
See
regex.3c
- refresh(3X)
-
See
curs_refresh.3x
- regcmp.3g
-
compile and execute regular expression
- regcomp.3c
-
regular expression matching
- regerror(3C)
-
See
regcomp.3c
- regex.3c
-
regular expression handler
- regex(3G)
-
See
regcmp.3g
- regexec(3C)
-
See
regcomp.3c
- regexpr.3g
-
regular expression compile and match routines
- regfree(3C)
-
See
regcomp.3c
- registerrpc(3N)
-
See
rpc_soc.3n
- remainder(3M)
-
See
ieee_functions.3m
- remove.3c
-
remove file
- remque(3C)
-
See
insque.3c
- replace_panel(3X)
-
See
panel_window.3x
- reset_prog_mode(3X)
-
See
curs_kernel.3x
- reset_shell_mode(3X)
-
See
curs_kernel.3x
- resetty(3X)
-
See
curs_kernel.3x
- res_init(3N)
-
See
resolver.3n
- res_mkquery(3N)
-
See
resolver.3n
- resolver.3n
-
resolver routines
- res_search(3N)
-
See
resolver.3n
- res_send(3N)
-
See
resolver.3n
- restartterm(3X)
-
See
curs_terminfo.3x
- rewind(3S)
-
See
fseek.3s
- rewinddir(3C)
-
See
directory.3c
- rexec.3n
-
return stream to a remote command
- rindex(3C)
-
See
index.3c
- rint(3M)
-
See
floor.3m
- ripoffline(3X)
-
See
curs_kernel.3x
- rmdirp(3G)
-
See
mkdirp.3g
- rnusers(3N)
-
See
rusers.3n
- rpc.3n
-
library routines for remote procedure calls
- rpcb_getaddr(3N)
-
See
rpcbind.3n
- rpcb_getmaps(3N)
-
See
rpcbind.3n
- rpcb_gettime(3N)
-
See
rpcbind.3n
- rpcbind.3n
-
library routines for RPC bind service
- rpcb_rmtcall(3N)
-
See
rpcbind.3n
- rpc_broadcast(3N)
-
See
rpc_clnt_calls.3n
- rpc_broadcast_exp(3N)
-
See
rpc_clnt_calls.3n
- rpcb_set(3N)
-
See
rpcbind.3n
- rpcb_unset(3N)
-
See
rpcbind.3n
- rpc_call(3N)
-
See
rpc_clnt_calls.3n
- rpc_clnt_auth.3n
-
library routines for client side remote procedure call authentication
- rpc_clnt_calls.3n
-
library routines for client side calls
- rpc_clnt_create.3n
-
library routines for dealing with creation and manipulation of CLIENT handles
- rpc_control.3n
-
library routine for manipulating global RPC attributes for client and server applications
- rpc_createerr(3N)
-
See
rpc_clnt_create.3n
- rpc_rac.3n
-
remote asynchronous calls
- rpc_reg(3N)
-
See
rpc_svc_reg.3n
- rpc_soc.3n
-
obsolete library routines for RPC
- rpc_svc_calls.3n
-
library routines for RPC servers
- rpc_svc_create.3n
-
library routines for the creation of server handles
- rpc_svc_err.3n
-
library routines for server side remote procedure call errors
- rpc_svc_reg.3n
-
library routines for registering servers
- rpc_xdr.3n
-
XDR library routines for remote procedure calls
- rresvport(3N)
-
See
rcmd.3n
- rstat.3n
-
get performance data from remote kernel
- ruserok(3N)
-
See
rcmd.3n
- rusers.3n
-
return information about users on remote machines
- rwall.3n
-
write to specified remote machines
- rwlock.3t
-
multiple readers, single writer locks
- rwlock_destroy(3T)
-
See
rwlock.3t
- rwlock_init(3T)
-
See
rwlock.3t
- rw_rdlock(3T)
-
See
rwlock.3t
- rw_tryrdlock(3T)
-
See
rwlock.3t
- rw_trywrlock(3T)
-
See
rwlock.3t
- rw_unlock(3T)
-
See
rwlock.3t
- rw_wrlock(3T)
-
See
rwlock.3t
- savetty(3X)
-
See
curs_kernel.3x
- scalb(3C)
-
See
frexp.3c
- scalb(3M)
-
See
ieee_test.3m
- scalbn(3M)
-
See
ieee_functions.3m
- scale_form(3X)
-
See
form_win.3x
- scale_menu(3X)
-
See
menu_win.3x
- scandir.3b
-
scan a directory
- scanf.3s
-
convert formatted input
- scanw(3X)
-
See
curs_scanw.3x
- sched_getparam(3R)
-
See
sched_setparam.3r
- sched_get_priority_max.3r
-
get scheduling parameter limits
- sched_get_priority_min(3R)
-
See
sched_get_priority_max.3r
- sched_getscheduler(3R)
-
See
sched_setscheduler.3r
- sched_rr_get_interval(3R)
-
See
sched_get_priority_max.3r
- sched_setparam.3r
-
set/get scheduling parameters
- sched_setscheduler.3r
-
set/get scheduling policy and scheduling parameters
- sched_yield.3r
-
yield processor
- scr_dump(3X)
-
See
curs_scr_dump.3x
- scr_init(3X)
-
See
curs_scr_dump.3x
- scrl(3X)
-
See
curs_scroll.3x
- scroll(3X)
-
See
curs_scroll.3x
- scrollok(3X)
-
See
curs_outopts.3x
- scr_restore(3X)
-
See
curs_scr_dump.3x
- scr_set(3X)
-
See
curs_scr_dump.3x
- seconvert(3)
-
See
econvert.3
- secure_rpc.3n
-
library routines for secure remote procedure calls
- seed48(3C)
-
See
drand48.3c
- seekdir(3C)
-
See
directory.3c
- select.3c
-
synchronous I/O multiplexing
- sema_destroy(3T)
-
See
semaphore.3t
- sema_init(3T)
-
See
semaphore.3t
- semaphore.3t
-
semaphores
- sema_post(3T)
-
See
semaphore.3t
- sema_trywait(3T)
-
See
semaphore.3t
- sema_wait(3T)
-
See
semaphore.3t
- sem_close.3r
-
close a named semaphore
- sem_destroy.3r
-
destroy an unnamed semaphore
- sem_getvalue.3r
-
get the value of a semaphore
- sem_init.3r
-
initialize an unnamed semaphore
- sem_open.3r
-
initialize/open a named semaphore
- sem_post.3r
-
increment the count of a semaphore
- sem_trywait(3R)
-
See
sem_wait.3r
- sem_unlink.3r
-
remove a named semaphore
- sem_wait.3r
-
acquire or wait for a semaphore
- send.3n
-
send a message from a socket
- sendmsg(3N)
-
See
send.3n
- sendto(3N)
-
See
send.3n
- setac(3)
-
See
getacinfo.3
- setauclass(3)
-
See
getauclassent.3
- setauevent(3)
-
See
getauevent.3
- setauuser(3)
-
See
getauusernam.3
- setbuf.3s
-
assign buffering to a stream
- setbuffer.3c
-
assign buffering to a stream
- setcat.3c
-
define default catalog
- set_current_field(3X)
-
See
form_page.3x
- set_current_item(3X)
-
See
menu_item_current.3x
- set_curterm(3X)
-
See
curs_terminfo.3x
- set_field_back(3X)
-
See
form_field_attributes.3x
- set_field_buffer(3X)
-
See
form_field_buffer.3x
- set_field_fore(3X)
-
See
form_field_attributes.3x
- set_field_init(3X)
-
See
form_hook.3x
- set_field_just(3X)
-
See
form_field_just.3x
- set_field_opts(3X)
-
See
form_field_opts.3x
- set_field_pad(3X)
-
See
form_field_attributes.3x
- set_field_status(3X)
-
See
form_field_buffer.3x
- set_field_term(3X)
-
See
form_hook.3x
- set_field_type(3X)
-
See
form_field_validation.3x
- set_fieldtype_arg(3X)
-
See
form_fieldtype.3x
- set_fieldtype_choice(3X)
-
See
form_fieldtype.3x
- set_field_userptr(3X)
-
See
form_field_userptr.3x
- set_form_fields(3X)
-
See
form_field.3x
- set_form_init(3X)
-
See
form_hook.3x
- set_form_opts(3X)
-
See
form_opts.3x
- set_form_page(3X)
-
See
form_page.3x
- set_form_sub(3X)
-
See
form_win.3x
- set_form_term(3X)
-
See
form_hook.3x
- set_form_userptr(3X)
-
See
form_userptr.3x
- set_form_win(3X)
-
See
form_win.3x
- setgrent(3C)
-
See
getgrnam.3c
- sethostent(3N)
-
See
gethostbyname.3n
- sethostname(3C)
-
See
gethostname.3c
- set_item_init(3X)
-
See
menu_hook.3x
- set_item_opts(3X)
-
See
menu_item_opts.3x
- set_item_term(3X)
-
See
menu_hook.3x
- set_item_userptr(3X)
-
See
menu_item_userptr.3x
- set_item_value(3X)
-
See
menu_item_value.3x
- setjmp.3b
-
non-local goto
- _setjmp(3B)
-
See
setjmp.3b
- setjmp.3c
-
non-local goto
- setkey(3C)
-
See
crypt.3c
- setlabel.3c
-
define the label for pfmt() and lfmt().
- setlinebuf(3C)
-
See
setbuffer.3c
- setlocale.3c
-
modify and query a program's locale
- setlogmask(3)
-
See
syslog.3
- set_max_field(3X)
-
See
form_field_buffer.3x
- set_menu_back(3X)
-
See
menu_attributes.3x
- set_menu_fore(3X)
-
See
menu_attributes.3x
- set_menu_format(3X)
-
See
menu_format.3x
- set_menu_grey(3X)
-
See
menu_attributes.3x
- set_menu_init(3X)
-
See
menu_hook.3x
- set_menu_items(3X)
-
See
menu_items.3x
- set_menu_mark(3X)
-
See
menu_mark.3x
- set_menu_opts(3X)
-
See
menu_opts.3x
- set_menu_pad(3X)
-
See
menu_attributes.3x
- set_menu_pattern(3X)
-
See
menu_pattern.3x
- set_menu_sub(3X)
-
See
menu_win.3x
- set_menu_term(3X)
-
See
menu_hook.3x
- set_menu_userptr(3X)
-
See
menu_userptr.3x
- set_menu_win(3X)
-
See
menu_win.3x
- setnetconfig(3N)
-
See
getnetconfig.3n
- setnetent(3N)
-
See
getnetbyname.3n
- setnetgrent(3N)
-
See
getnetgrent.3n
- setnetpath(3N)
-
See
getnetpath.3n
- set_new_page(3X)
-
See
form_new_page.3x
- set_panel_userptr(3X)
-
See
panel_userptr.3x
- setpriority(3C)
-
See
getpriority.3c
- setprotoent(3N)
-
See
getprotobyname.3n
- setpwent(3C)
-
See
getpwnam.3c
- setrpcent(3N)
-
See
getrpcbyname.3n
- setscrreg(3X)
-
See
curs_outopts.3x
- setservent(3N)
-
See
getservbyname.3n
- setsockopt(3N)
-
See
getsockopt.3n
- setspent(3C)
-
See
getspnam.3c
- setstate(3C)
-
See
random.3c
- setsyx(3X)
-
See
curs_kernel.3x
- set_term(3X)
-
See
curs_initscr.3x
- setterm(3X)
-
See
curs_terminfo.3x
- settimeofday(3B)
-
See
gettimeofday.3b
- settimeofday(3C)
-
See
gettimeofday.3c
- set_top_row(3X)
-
See
menu_item_current.3x
- setupterm(3X)
-
See
curs_terminfo.3x
- setusershell(3C)
-
See
getusershell.3c
- setutent(3C)
-
See
getutent.3c
- setutxent(3C)
-
See
getutxent.3c
- setvbuf(3S)
-
See
setbuf.3s
- sfconvert(3)
-
See
econvert.3
- sgconvert(3)
-
See
econvert.3
- shm_open.3r
-
open a shared memory object
- shm_unlink.3r
-
remove a shared memory object
- show_panel(3X)
-
See
panel_show.3x
- shutdown.3n
-
shut down part of a full-duplex connection
- sig2str(3C)
-
See
str2sig.3c
- sigaddset(3C)
-
See
sigsetops.3c
- sigblock.3b
-
block signals
- sigdelset(3C)
-
See
sigsetops.3c
- sigemptyset(3C)
-
See
sigsetops.3c
- sigfillset(3C)
-
See
sigsetops.3c
- sigfpe.3
-
signal handling for specific SIGFPE codes
- sighold(3C)
-
See
signal.3c
- sigignore(3C)
-
See
signal.3c
- siginterrupt.3b
-
allow signals to interrupt functions
- sigismember(3C)
-
See
sigsetops.3c
- siglongjmp(3C)
-
See
setjmp.3c
- sigmask(3B)
-
See
sigblock.3b
- signal.3b
-
simplified software signal facilities
- signal.3c
-
simplified signal management for application processes
- significand(3M)
-
See
ieee_test.3m
- sigpause(3B)
-
See
sigblock.3b
- sigpause(3C)
-
See
signal.3c
- sigqueue.3r
-
queue a signal to a process
- sigrelse(3C)
-
See
signal.3c
- sigset(3C)
-
See
signal.3c
- sigsetjmp(3C)
-
See
setjmp.3c
- sigsetmask(3B)
-
See
sigblock.3b
- sigsetops.3c
-
manipulate sets of signals
- sigstack.3b
-
set and/or get signal stack context
- sigtimedwait(3R)
-
See
sigwaitinfo.3r
- sigvec.3b
-
software signal facilities
- sigwaitinfo.3r
-
wait for queued signals
- sin(3M)
-
See
trig.3m
- single_to_decimal(3)
-
See
floating_to_decimal.3
- sinh(3M)
-
See
hyperbolic.3m
- sleep.3b
-
suspend execution for interval
- sleep.3c
-
suspend execution for interval
- slk_attroff(3X)
-
See
curs_slk.3x
- slk_attron(3X)
-
See
curs_slk.3x
- slk_attrset(3X)
-
See
curs_slk.3x
- slk_clear(3X)
-
See
curs_slk.3x
- slk_init(3X)
-
See
curs_slk.3x
- slk_label(3X)
-
See
curs_slk.3x
- slk_noutrefresh(3X)
-
See
curs_slk.3x
- slk_refresh(3X)
-
See
curs_slk.3x
- slk_restore(3X)
-
See
curs_slk.3x
- slk_set(3X)
-
See
curs_slk.3x
- slk_touch(3X)
-
See
curs_slk.3x
- socket.3n
-
create an endpoint for communication
- socketpair.3n
-
create a pair of connected sockets
- space(3)
-
See
plot.3
- spray.3n
-
scatter data in order to test the network
- sprintf(3B)
-
See
printf.3b
- sprintf(3S)
-
See
printf.3s
- sqrt.3m
-
square root, cube root
- srand(3B)
-
See
rand.3b
- srand(3C)
-
See
rand.3c
- srand48(3C)
-
See
drand48.3c
- srandom(3C)
-
See
random.3c
- sscanf(3S)
-
See
scanf.3s
- ssignal.3c
-
software signals
- standend(3X)
-
See
curs_attr.3x
- standout(3X)
-
See
curs_attr.3x
- start_color(3X)
-
See
curs_color.3x
- stdio.3s
-
standard buffered input/output package
- stdipc.3c
-
standard interprocess communication package
- step(3G)
-
See
regexpr.3g
- store(3B)
-
See
dbm.3b
- str(3G)
-
See
strfind.3g
- str2sig.3c
-
translation between signal name and signal number
- strcadd(3G)
-
See
strccpy.3g
- strcasecmp(3C)
-
See
string.3c
- strcat(3C)
-
See
string.3c
- strccpy.3g
-
copy strings, compressing or expanding escape codes
- strchr(3C)
-
See
string.3c
- strcmp(3C)
-
See
string.3c
- strcoll.3c
-
string collation
- strcpy(3C)
-
See
string.3c
- strcspn(3C)
-
See
string.3c
- strdup(3C)
-
See
string.3c
- streadd(3G)
-
See
strccpy.3g
- strecpy(3G)
-
See
strccpy.3g
- strerror.3c
-
get error message string
- strfind.3g
-
string manipulations
- strfmon.3c
-
convert monetary value to string
- strftime.3c
-
convert date and time to string
- string.3c
-
string operations
- string_to_decimal.3
-
parse characters into decimal record
- strlen(3C)
-
See
string.3c
- strncasecmp(3C)
-
See
string.3c
- strncat(3C)
-
See
string.3c
- strncmp(3C)
-
See
string.3c
- strncpy(3C)
-
See
string.3c
- strpbrk(3C)
-
See
string.3c
- strptime.3c
-
date and time conversion
- strrchr(3C)
-
See
string.3c
- strrspn(3G)
-
See
strfind.3g
- strsignal.3c
-
get error message string
- strspn(3C)
-
See
string.3c
- strstr(3C)
-
See
string.3c
- strtod.3c
-
convert string to double-precision number
- strtok(3C)
-
See
string.3c
- strtok_r(3C)
-
See
string.3c
- strtol.3c
-
conversion routines
- strtoll(3C)
-
See
strtol.3c
- strtoul(3C)
-
See
strtol.3c
- strtoull(3C)
-
See
strtol.3c
- strtrns(3G)
-
See
strfind.3g
- strxfrm.3c
-
string transformation
- subpad(3X)
-
See
curs_pad.3x
- subwin(3X)
-
See
curs_window.3x
- svc_auth_reg(3N)
-
See
rpc_svc_reg.3n
- svc_control(3N)
-
See
rpc_svc_create.3n
- svc_create(3N)
-
See
rpc_svc_create.3n
- svc_destroy(3N)
-
See
rpc_svc_create.3n
- svc_dg_create(3N)
-
See
rpc_svc_create.3n
- svc_dg_enablecache(3N)
-
See
rpc_svc_calls.3n
- svc_done(3N)
-
See
rpc_svc_calls.3n
- svcerr_auth(3N)
-
See
rpc_svc_err.3n
- svcerr_decode(3N)
-
See
rpc_svc_err.3n
- svcerr_noproc(3N)
-
See
rpc_svc_err.3n
- svcerr_noprog(3N)
-
See
rpc_svc_err.3n
- svcerr_progvers(3N)
-
See
rpc_svc_err.3n
- svcerr_systemerr(3N)
-
See
rpc_svc_err.3n
- svcerr_weakauth(3N)
-
See
rpc_svc_err.3n
- svc_exit(3N)
-
See
rpc_svc_calls.3n
- svcfd_create(3N)
-
See
rpc_soc.3n
- svc_fd_create(3N)
-
See
rpc_svc_create.3n
- svc_fds(3N)
-
See
rpc_soc.3n
- svc_fdset(3N)
-
See
rpc_svc_calls.3n
- svc_freeargs(3N)
-
See
rpc_svc_calls.3n
- svc_getargs(3N)
-
See
rpc_svc_calls.3n
- svc_getcaller(3N)
-
See
rpc_soc.3n
- svc_getreq(3N)
-
See
rpc_soc.3n
- svc_getreq_common(3N)
-
See
rpc_svc_calls.3n
- svc_getreq_poll(3N)
-
See
rpc_svc_calls.3n
- svc_getreqset(3N)
-
See
rpc_svc_calls.3n
- svc_getrpccaller(3N)
-
See
rpc_svc_calls.3n
- svc_kerb_reg(3N)
-
See
kerberos_rpc.3n
- svc_pollset(3N)
-
See
rpc_svc_calls.3n
- svcraw_create(3N)
-
See
rpc_soc.3n
- svc_raw_create(3N)
-
See
rpc_svc_create.3n
- svc_reg(3N)
-
See
rpc_svc_reg.3n
- svc_register(3N)
-
See
rpc_soc.3n
- svc_run(3N)
-
See
rpc_svc_calls.3n
- svc_sendreply(3N)
-
See
rpc_svc_calls.3n
- svctcp_create(3N)
-
See
rpc_soc.3n
- svc_tli_create(3N)
-
See
rpc_svc_create.3n
- svc_tp_create(3N)
-
See
rpc_svc_create.3n
- svcudp_bufcreate(3N)
-
See
rpc_soc.3n
- svcudp_create(3N)
-
See
rpc_soc.3n
- svc_unreg(3N)
-
See
rpc_svc_reg.3n
- svc_unregister(3N)
-
See
rpc_soc.3n
- svc_vc_create(3N)
-
See
rpc_svc_create.3n
- swab.3c
-
swap bytes
- swapcontext(3C)
-
See
makecontext.3c
- syncok(3X)
-
See
curs_window.3x
- syscall.3b
-
indirect system call
- sysconf.3c
-
get configurable system variables
- syslog.3
-
control system log
- sysmem.3
-
return physical memory information
- sys_siglist(3B)
-
See
psignal.3b
- system.3s
-
issue a shell command
- t_accept.3n
-
accept a connect request
- taddr2uaddr(3N)
-
See
netdir.3n
- t_alloc.3n
-
allocate a library structure
- tan(3M)
-
See
trig.3m
- tanh(3M)
-
See
hyperbolic.3m
- t_bind.3n
-
bind an address to a transport endpoint
- tcdrain(3)
-
See
termios.3
- tcflow(3)
-
See
termios.3
- tcflush(3)
-
See
termios.3
- tcgetattr(3)
-
See
termios.3
- tcgetpgrp(3)
-
See
termios.3
- tcgetsid(3)
-
See
termios.3
- t_close.3n
-
close a transport endpoint
- t_connect.3n
-
establish a connection with another transport user
- tcsendbreak(3)
-
See
termios.3
- tcsetattr(3)
-
See
termios.3
- tcsetpgrp(3)
-
See
termios.3
- tcsetpgrp.3c
-
set foreground process group id of terminal
- tdelete(3C)
-
See
tsearch.3c
- td_init(3T)
-
See
libthread_db.3t
- td_log(3T)
-
See
libthread_db.3t
- td_ta_delete(3T)
-
See
libthread_db.3t
- td_ta_get_nthreads(3T)
-
See
libthread_db.3t
- td_ta_get_ph(3T)
-
See
libthread_db.3t
- td_ta_map_id2thr(3T)
-
See
libthread_db.3t
- td_ta_map_lwp2thr(3T)
-
See
libthread_db.3t
- td_ta_new(3T)
-
See
libthread_db.3t
- td_ta_thr_iter(3T)
-
See
libthread_db.3t
- td_ta_tsd_iter(3T)
-
See
libthread_db.3t
- td_thr_getfpregs(3T)
-
See
libthread_db.3t
- td_thr_getgregs(3T)
-
See
libthread_db.3t
- td_thr_get_info(3T)
-
See
libthread_db.3t
- td_thr_getxregs(3T)
-
See
libthread_db.3t
- td_thr_getxregsize(3T)
-
See
libthread_db.3t
- td_thr_setfpregs(3T)
-
See
libthread_db.3t
- td_thr_setgregs(3T)
-
See
libthread_db.3t
- td_thr_setprio(3T)
-
See
libthread_db.3t
- td_thr_setsigpending(3T)
-
See
libthread_db.3t
- td_thr_setxregs(3T)
-
See
libthread_db.3t
- td_thr_sigsetmask(3T)
-
See
libthread_db.3t
- td_thr_tsd(3T)
-
See
libthread_db.3t
- td_thr_validate(3T)
-
See
libthread_db.3t
- telldir(3C)
-
See
directory.3c
- tempnam(3S)
-
See
tmpnam.3s
- termattrs(3X)
-
See
curs_termattrs.3x
- termios.3
-
general terminal interface
- termname(3X)
-
See
curs_termattrs.3x
- t_error.3n
-
produce error message
- textdomain(3I)
-
See
gettext.3i
- tfind(3C)
-
See
tsearch.3c
- t_free.3n
-
free a library structure
- tgetent(3X)
-
See
curs_termcap.3x
- tgetflag(3X)
-
See
curs_termcap.3x
- t_getinfo.3n
-
get protocol-specific service information
- tgetnum(3X)
-
See
curs_termcap.3x
- t_getstate.3n
-
get the current state
- tgetstr(3X)
-
See
curs_termcap.3x
- tgoto(3X)
-
See
curs_termcap.3x
- thr_continue(3T)
-
See
thr_suspend.3t
- thr_create(3T)
-
See
pthread_create.3t
- threads.3t
-
thread libraries: libpthread and libthread
- thr_exit(3T)
-
See
pthread_exit.3t
- thr_getconcurrency(3T)
-
See
thr_setconcurrency.3t
- thr_getprio(3T)
-
See
pthread_setschedparam.3t
- thr_getspecific(3T)
-
See
pthread_key_create.3t
- thr_join(3T)
-
See
pthread_join.3t
- thr_keycreate(3T)
-
See
pthread_key_create.3t
- thr_kill(3T)
-
See
pthread_kill.3t
- thr_main.3t
-
identify the main thread
- thr_min_stack.3t
-
returns the minimum-allowable size for a thread's stack
- thr_self(3T)
-
See
pthread_self.3t
- thr_setconcurrency.3t
-
get/set thread concurrency level
- thr_setprio(3T)
-
See
pthread_setschedparam.3t
- thr_setspecific(3T)
-
See
pthread_key_create.3t
- thr_sigsetmask(3T)
-
See
pthread_sigmask.3t
- thr_stksegment.3t
-
get thread stack bottom and stack size
- thr_suspend.3t
-
suspend or continue thread execution
- thr_yield.3t
-
thread yield to another thread
- tigetflag(3X)
-
See
curs_terminfo.3x
- tigetnum(3X)
-
See
curs_terminfo.3x
- tigetstr(3X)
-
See
curs_terminfo.3x
- timeout(3X)
-
See
curs_inopts.3x
- timer_create.3r
-
create a timer
- timer_delete.3r
-
delete a per-LWP timer
- timer_getoverrun(3R)
-
See
timer_settime.3r
- timer_gettime(3R)
-
See
timer_settime.3r
- timer_settime.3r
-
high-resolution timer operations
- times.3b
-
get process times
- t_listen.3n
-
listen for a connect request
- t_look.3n
-
look at the current event on a transport endpoint
- tmpfile.3s
-
create a temporary file
- tmpnam.3s
-
create a name for a temporary file
- tmpnam_r(3S)
-
See
tmpnam.3s
- TNF_DECLARE_RECORD.3x
-
TNF type extension interface for probes
- TNF_DEFINE_RECORD_1(3X)
-
See
TNF_DECLARE_RECORD.3x
- TNF_DEFINE_RECORD_2(3X)
-
See
TNF_DECLARE_RECORD.3x
- TNF_DEFINE_RECORD_3(3X)
-
See
TNF_DECLARE_RECORD.3x
- TNF_DEFINE_RECORD_4(3X)
-
See
TNF_DECLARE_RECORD.3x
- TNF_DEFINE_RECORD_5(3X)
-
See
TNF_DECLARE_RECORD.3x
- TNF_PROBE.3x
-
probe insertion interface
- TNF_PROBE_0(3X)
-
See
TNF_PROBE.3x
- TNF_PROBE_1(3X)
-
See
TNF_PROBE.3x
- TNF_PROBE_2(3X)
-
See
TNF_PROBE.3x
- TNF_PROBE_3(3X)
-
See
TNF_PROBE.3x
- TNF_PROBE_4(3X)
-
See
TNF_PROBE.3x
- TNF_PROBE_5(3X)
-
See
TNF_PROBE.3x
- tnf_process_disable.3x
-
probe control internal interface
- tnf_process_enable(3X)
-
See
tnf_process_disable.3x
- tnf_thread_disable(3X)
-
See
tnf_process_disable.3x
- tnf_thread_enable(3X)
-
See
tnf_process_disable.3x
- toascii(3C)
-
See
conv.3c
- _tolower(3C)
-
See
conv.3c
- tolower(3C)
-
See
conv.3c
- t_open.3n
-
establish a transport endpoint
- top_panel(3X)
-
See
panel_top.3x
- top_row(3X)
-
See
menu_item_current.3x
- t_optmgmt.3n
-
manage options for a transport endpoint
- touchline(3X)
-
See
curs_touch.3x
- touchwin(3X)
-
See
curs_touch.3x
- _toupper(3C)
-
See
conv.3c
- toupper(3C)
-
See
conv.3c
- towlower(3I)
-
See
wconv.3i
- towupper(3I)
-
See
wconv.3i
- tparm(3X)
-
See
curs_terminfo.3x
- tputs(3X)
-
See
curs_termcap.3x
- tputs(3X)
-
See
curs_terminfo.3x
- t_rcv.3n
-
receive data or expedited data sent over a connection
- t_rcvconnect.3n
-
receive the confirmation from a connect request
- t_rcvdis.3n
-
retrieve information from disconnect
- t_rcvrel.3n
-
acknowledge receipt of an orderly release indication
- t_rcvudata.3n
-
receive a data unit
- t_rcvuderr.3n
-
receive a unit data error indication
- trig.3m
-
trigonometric functions
- truncate.3c
-
set a file to a specified length
- tsearch.3c
-
manage binary search trees
- t_snd.3n
-
send data or expedited data over a connection
- t_snddis.3n
-
send user-initiated disconnect request
- t_sndrel.3n
-
initiate an orderly release
- t_sndudata.3n
-
send a data unit
- t_strerror.3n
-
get error message string
- t_sync.3n
-
synchronize transport library
- ttyname.3c
-
find name of a terminal
- ttyname_r(3C)
-
See
ttyname.3c
- ttyslot.3c
-
find the slot in the utmp file of the current user
- t_unbind.3n
-
disable a transport endpoint
- twalk(3C)
-
See
tsearch.3c
- typeahead(3X)
-
See
curs_inopts.3x
- tzset(3C)
-
See
ctime.3c
- tzsetwall(3C)
-
See
ctime.3c
- uaddr2taddr(3N)
-
See
netdir.3n
- ualarm.3c
-
schedule signal after interval in microseconds
- ulckpwdf(3C)
-
See
lckpwdf.3c
- ulltostr(3C)
-
See
strtol.3c
- unctrl(3X)
-
See
curs_util.3x
- ungetc.3s
-
push character back onto input stream
- ungetch(3X)
-
See
curs_getch.3x
- ungetwc.3i
-
push a Process Code character back into input stream
- ungetwch(3X)
-
See
curs_getwch.3x
- unlockpt.3c
-
unlock a pseudo-terminal master/slave pair
- unordered(3C)
-
See
isnan.3c
- unpost_form(3X)
-
See
form_post.3x
- unpost_menu(3X)
-
See
menu_post.3x
- untouchwin(3X)
-
See
curs_touch.3x
- update_panels(3X)
-
See
panel_update.3x
- updwtmp(3C)
-
See
getutxent.3c
- updwtmpx(3C)
-
See
getutxent.3c
- use_env(3X)
-
See
curs_util.3x
- user2netname(3N)
-
See
secure_rpc.3n
- usleep.3c
-
suspend execution for interval in microseconds
- utmpname(3C)
-
See
getutent.3c
- utmpxname(3C)
-
See
getutxent.3c
- valloc(3C)
-
See
malloc.3c
- vfprintf(3B)
-
See
printf.3b
- vfprintf(3S)
-
See
vprintf.3s
- vidattr(3X)
-
See
curs_terminfo.3x
- vidputs(3X)
-
See
curs_terminfo.3x
- vlfmt.3c
-
display error message in standard format and pass to logging and monitoring services
- volmgt_check.3x
-
have Volume Management check for media
- volmgt_inuse.3x
-
check whether or not Volume Management is managing a pathname
- volmgt_root.3x
-
return the Volume Management root directory
- volmgt_running.3x
-
return whether or not Volume Management is running
- volmgt_symdev(3X)
-
See
volmgt_symname.3x
- volmgt_symname.3x
-
convert between Volume Management symbolic names, and the devices that correspond to them
- vpfmt.3c
-
display error message in standard format and pass to logging and monitoring services
- vprintf(3B)
-
See
printf.3b
- vprintf.3s
-
print formatted output of a variable argument list
- vsprintf(3B)
-
See
printf.3b
- vsprintf(3S)
-
See
vprintf.3s
- vsyslog.3
-
log message with a varargs argument list
- vwprintw(3X)
-
See
curs_printw.3x
- vwscanw(3X)
-
See
curs_scanw.3x
- waddch(3X)
-
See
curs_addch.3x
- waddchnstr(3X)
-
See
curs_addchstr.3x
- waddchstr(3X)
-
See
curs_addchstr.3x
- waddnstr(3X)
-
See
curs_addstr.3x
- waddnwstr(3X)
-
See
curs_addwstr.3x
- waddstr(3X)
-
See
curs_addstr.3x
- waddwch(3X)
-
See
curs_addwch.3x
- waddwchnstr(3X)
-
See
curs_addwchstr.3x
- waddwchstr(3X)
-
See
curs_addwchstr.3x
- waddwstr(3X)
-
See
curs_addwstr.3x
- wadjcurspos(3X)
-
See
curs_alecompat.3x
- wait.3b
-
wait for process to terminate or stop
- wait3(3B)
-
See
wait.3b
- wait3.3c
-
wait for process to terminate or stop
- wait4(3B)
-
See
wait.3b
- wait4(3C)
-
See
wait3.3c
- waitpid(3B)
-
See
wait.3b
- watof(3I)
-
See
wcstod.3i
- watoi(3I)
-
See
wcstol.3i
- watol(3I)
-
See
wcstol.3i
- watoll(3I)
-
See
wcstol.3i
- wattroff(3X)
-
See
curs_attr.3x
- wattron(3X)
-
See
curs_attr.3x
- wattrset(3X)
-
See
curs_attr.3x
- wbkgd(3X)
-
See
curs_bkgd.3x
- wbkgdset(3X)
-
See
curs_bkgd.3x
- wborder(3X)
-
See
curs_border.3x
- wclear(3X)
-
See
curs_clear.3x
- wclrtobot(3X)
-
See
curs_clear.3x
- wclrtoeol(3X)
-
See
curs_clear.3x
- wconv.3i
-
Process Code character conversion macros
- wcscat(3I)
-
See
wcstring.3i
- wcschr(3I)
-
See
wcstring.3i
- wcscmp(3I)
-
See
wcstring.3i
- wcscoll.3i
-
wide character string comparison using collating information
- wcscpy(3I)
-
See
wcstring.3i
- wcscspn(3I)
-
See
wcstring.3i
- wcsetno(3I)
-
See
cset.3i
- wcsftime.3i
-
convert date and time to wide character string
- wcslen(3I)
-
See
wcstring.3i
- wcsncat(3I)
-
See
wcstring.3i
- wcsncmp(3I)
-
See
wcstring.3i
- wcsncpy(3I)
-
See
wcstring.3i
- wcspbrk(3I)
-
See
wcstring.3i
- wcsrchr(3I)
-
See
wcstring.3i
- wcsspn(3I)
-
See
wcstring.3i
- wcstod.3i
-
convert wide character string to double-precision number
- wcstok(3I)
-
See
wcstring.3i
- wcstol.3i
-
convert wide character string to long integer
- wcstombs(3C)
-
See
mbstring.3c
- wcstoul.3i
-
convert wide character string to unsigned long
- wcstring.3i
-
wide character string operations
- wcswcs(3I)
-
See
wcstring.3i
- wcswidth(3I)
-
See
wcstring.3i
- wcsxfrm.3i
-
wide character string transformation
- wctomb(3C)
-
See
mbchar.3c
- wctype.3i
-
define character class
- wcursyncup(3X)
-
See
curs_window.3x
- wcwidth(3I)
-
See
wcstring.3i
- wdelch(3X)
-
See
curs_delch.3x
- wdeleteln(3X)
-
See
curs_deleteln.3x
- wechochar(3X)
-
See
curs_addch.3x
- wechowchar(3X)
-
See
curs_addwch.3x
- werase(3X)
-
See
curs_clear.3x
- wgetch(3X)
-
See
curs_getch.3x
- wgetnstr(3X)
-
See
curs_getstr.3x
- wgetnwstr(3X)
-
See
curs_getwstr.3x
- wgetstr(3X)
-
See
curs_getstr.3x
- wgetwch(3X)
-
See
curs_getwch.3x
- wgetwstr(3X)
-
See
curs_getwstr.3x
- whline(3X)
-
See
curs_border.3x
- WIFEXITED(3B)
-
See
wait.3b
- WIFSIGNALED(3B)
-
See
wait.3b
- WIFSTOPPED(3B)
-
See
wait.3b
- winch(3X)
-
See
curs_inch.3x
- winchnstr(3X)
-
See
curs_inchstr.3x
- winchstr(3X)
-
See
curs_inchstr.3x
- windex(3I)
-
See
wcstring.3i
- winnstr(3X)
-
See
curs_instr.3x
- winnwstr(3X)
-
See
curs_inwstr.3x
- winsch(3X)
-
See
curs_insch.3x
- winsdelln(3X)
-
See
curs_deleteln.3x
- winsertln(3X)
-
See
curs_deleteln.3x
- winsnstr(3X)
-
See
curs_insstr.3x
- winsnwstr(3X)
-
See
curs_inswstr.3x
- winsstr(3X)
-
See
curs_insstr.3x
- winstr(3X)
-
See
curs_instr.3x
- winswch(3X)
-
See
curs_inswch.3x
- winswstr(3X)
-
See
curs_inswstr.3x
- winwch(3X)
-
See
curs_inwch.3x
- winwchnstr(3X)
-
See
curs_inwchstr.3x
- winwchstr(3X)
-
See
curs_inwchstr.3x
- winwstr(3X)
-
See
curs_inwstr.3x
- wmove(3X)
-
See
curs_move.3x
- wmovenextch(3X)
-
See
curs_alecompat.3x
- wmoveprevch(3X)
-
See
curs_alecompat.3x
- wnoutrefresh(3X)
-
See
curs_refresh.3x
- wordexp.3c
-
perform word expansions
- wordfree(3C)
-
See
wordexp.3c
- wprintw(3X)
-
See
curs_printw.3x
- wredrawln(3X)
-
See
curs_refresh.3x
- wrefresh(3X)
-
See
curs_refresh.3x
- wrindex(3I)
-
See
wcstring.3i
- write_vtoc(3X)
-
See
read_vtoc.3x
- wscanw(3X)
-
See
curs_scanw.3x
- wscasecmp(3I)
-
See
wstring.3i
- wscat(3I)
-
See
wcstring.3i
- wschr(3I)
-
See
wcstring.3i
- wscmp(3I)
-
See
wcstring.3i
- wscol(3I)
-
See
wstring.3i
- wscoll(3I)
-
See
wcscoll.3i
- wscpy(3I)
-
See
wcstring.3i
- wscrl(3X)
-
See
curs_scroll.3x
- wscspn(3I)
-
See
wcstring.3i
- wsdup(3I)
-
See
wstring.3i
- wsetscrreg(3X)
-
See
curs_outopts.3x
- wslen(3I)
-
See
wcstring.3i
- wsncasecmp(3I)
-
See
wstring.3i
- wsncat(3I)
-
See
wcstring.3i
- wsncmp(3I)
-
See
wcstring.3i
- wsncpy(3I)
-
See
wcstring.3i
- wspbrk(3I)
-
See
wcstring.3i
- wsprintf.3i
-
formatted output conversion
- wsrchr(3I)
-
See
wcstring.3i
- wsscanf.3i
-
formatted input conversion
- wsspn(3I)
-
See
wcstring.3i
- wstandend(3X)
-
See
curs_attr.3x
- wstandout(3X)
-
See
curs_attr.3x
- wstod(3I)
-
See
wcstod.3i
- wstok(3I)
-
See
wcstring.3i
- wstol(3I)
-
See
wcstol.3i
- wstring.3i
-
Process Code string operations
- wsxfrm(3I)
-
See
wcsxfrm.3i
- wsyncdown(3X)
-
See
curs_window.3x
- wsyncup(3X)
-
See
curs_window.3x
- wtimeout(3X)
-
See
curs_inopts.3x
- wtouchln(3X)
-
See
curs_touch.3x
- wvline(3X)
-
See
curs_border.3x
- xdr.3n
-
library routines for external data representation
- xdr_accepted_reply(3N)
-
See
rpc_xdr.3n
- xdr_admin.3n
-
library routines for external data representation
- xdr_array(3N)
-
See
xdr_complex.3n
- xdr_authsys_parms(3N)
-
See
rpc_xdr.3n
- xdr_authunix_parms(3N)
-
See
rpc_soc.3n
- xdr_bool(3N)
-
See
xdr_simple.3n
- xdr_bytes(3N)
-
See
xdr_complex.3n
- xdr_callhdr(3N)
-
See
rpc_xdr.3n
- xdr_callmsg(3N)
-
See
rpc_xdr.3n
- xdr_char(3N)
-
See
xdr_simple.3n
- xdr_complex.3n
-
library routines for external data representation
- xdr_control(3N)
-
See
xdr_admin.3n
- xdr_create.3n
-
library routines for external data representation stream creation
- xdr_destroy(3N)
-
See
xdr_create.3n
- xdr_double(3N)
-
See
xdr_simple.3n
- xdr_enum(3N)
-
See
xdr_simple.3n
- xdr_float(3N)
-
See
xdr_simple.3n
- xdr_free(3N)
-
See
xdr_simple.3n
- xdr_getpos(3N)
-
See
xdr_admin.3n
- xdr_hyper(3N)
-
See
xdr_simple.3n
- xdr_inline(3N)
-
See
xdr_admin.3n
- xdr_int(3N)
-
See
xdr_simple.3n
- xdr_long(3N)
-
See
xdr_simple.3n
- xdr_longlong_t(3N)
-
See
xdr_simple.3n
- xdrmem_create(3N)
-
See
xdr_create.3n
- xdr_opaque(3N)
-
See
xdr_complex.3n
- xdr_opaque_auth(3N)
-
See
rpc_xdr.3n
- xdr_pointer(3N)
-
See
xdr_complex.3n
- xdr_quadruple(3N)
-
See
xdr_simple.3n
- xdrrec_create(3N)
-
See
xdr_create.3n
- xdrrec_endofrecord(3N)
-
See
xdr_admin.3n
- xdrrec_eof(3N)
-
See
xdr_admin.3n
- xdrrec_readbytes(3N)
-
See
xdr_admin.3n
- xdrrec_skiprecord(3N)
-
See
xdr_admin.3n
- xdr_reference(3N)
-
See
xdr_complex.3n
- xdr_rejected_reply(3N)
-
See
rpc_xdr.3n
- xdr_replymsg(3N)
-
See
rpc_xdr.3n
- xdr_setpos(3N)
-
See
xdr_admin.3n
- xdr_short(3N)
-
See
xdr_simple.3n
- xdr_simple.3n
-
library routines for external data representation
- xdr_sizeof(3N)
-
See
xdr_admin.3n
- xdrstdio_create(3N)
-
See
xdr_create.3n
- xdr_string(3N)
-
See
xdr_complex.3n
- xdr_u_char(3N)
-
See
xdr_simple.3n
- xdr_u_hyper(3N)
-
See
xdr_simple.3n
- xdr_u_int(3N)
-
See
xdr_simple.3n
- xdr_u_long(3N)
-
See
xdr_simple.3n
- xdr_u_longlong_t(3N)
-
See
xdr_simple.3n
- xdr_union(3N)
-
See
xdr_complex.3n
- xdr_u_short(3N)
-
See
xdr_simple.3n
- xdr_vector(3N)
-
See
xdr_complex.3n
- xdr_void(3N)
-
See
xdr_simple.3n
- xdr_wrapstring(3N)
-
See
xdr_complex.3n
- xfn.3n
-
overview of the XFN interface
- xfn_attributes.3n
-
an overview of XFN attribute operations
- xfn_composite_names.3n
-
XFN composite syntax: an overview of the syntax for XFN composite name
- xfn_compound_names.3n
-
XFN compound syntax: an overview of XFN model for compound name parsing
- xfn_links.3n
-
XFN links: an overview of XFN links
- xfn_status_codes.3n
-
descriptions of XFN status codes
- xprt_register(3N)
-
See
rpc_svc_reg.3n
- xprt_unregister(3N)
-
See
rpc_svc_reg.3n
- y0(3M)
-
See
bessel.3m
- y1(3M)
-
See
bessel.3m
- yn(3M)
-
See
bessel.3m
- yp_all(3N)
-
See
ypclnt.3n
- yp_bind(3N)
-
See
ypclnt.3n
- ypclnt.3n
-
NIS Version 2 client interface
- yperr_string(3N)
-
See
ypclnt.3n
- yp_first(3N)
-
See
ypclnt.3n
- yp_get_default_domain(3N)
-
See
ypclnt.3n
- yp_master(3N)
-
See
ypclnt.3n
- yp_match(3N)
-
See
ypclnt.3n
- yp_next(3N)
-
See
ypclnt.3n
- yp_order(3N)
-
See
ypclnt.3n
- ypprot_err(3N)
-
See
ypclnt.3n
- yp_unbind(3N)
-
See
ypclnt.3n
- yp_update.3n
-
change NIS information
Created by unroff & hp-tools.
© by Hans-Peter Bischof. All Rights Reserved (1997).
Last modified 21/April/97