|
ungetwc(3) -- un-get wide-character from input stream
|
The ungetwc() function pushes the wide-character wc (converted to an wchar_t) back onto the input stream pointed to by stream. The pushedbacked wide-characters will be returned by subsequent reads on ... |
unsetenv(3) -- environment variable functions
|
These functions set, unset and fetch environment variables from the host environment list. For compatibility with differing environment conventions, the given arguments name and value may be appended ... |
|
unvis(3) -- decode a visual representation of characters
|
The unvis(), strunvis() and strunvisx() functions are used to decode a visual representation of characters, as produced by the vis(3) function, back into the original form. The unvis() function is cal... |
usbhid(3) -- USB HID access routines
|
The usbhid library provides routines to extract data from USB Human Interface Devices. INTRODUCTION [Toc] [Back] USB HID devices send and receive data layed out in a device dependent way. The us... |
user_from_uid(3) -- cache password and group entries
|
The user_from_uid() function returns the user name associated with the argument uid. The user name is cached so that multiple calls with the same uid do not require additional calls to getpwuid(3). If... |
usleep(3) -- suspend execution for interval of microseconds
|
The usleep() function suspends execution of the calling process until either the number of microseconds specified by microseconds have elapsed or a signal is delivered to the calling process and its a... |
util(3) -- system utilities library
|
The util library is the system utilities library and contains various system-dependent utility routines mostly related to pseudo-terminals and login accounting. These routines are NetBSD-specific and ... |
utime(3) -- set file times
|
This interface is obsoleted by utimes(2). The utime() function sets the access and modification times of the named file. If timep is NULL, the access and modification times are set to the current time... |
valloc(3) -- aligned memory allocation function
|
Valloc is obsoleted by the current version of malloc(3), which aligns page-sized and larger allocations. The valloc() function allocates size bytes aligned on a page boundary. It is implemented by cal... |
varargs(3) -- variable argument lists
|
These historic interfaces are provided to support compilation of existing programs only. New code should use the stdarg(3) interfaces. A function may be called with a varying number of arguments of va... |
vasprintf(3) -- formatted output conversion
|
The printf() family of functions produces output according to a format as described below. printf() and vprintf() write output to stdout, the standard output stream; fprintf() and vfprintf() write out... |
va_arg(3) -- variable argument lists
|
A function may be called with a varying number of arguments of varying types. The include file declares a type (va_list) and defines three macros for stepping through a list of arguments wh... |
va_copy(3) -- variable argument lists
|
A function may be called with a varying number of arguments of varying types. The include file declares a type (va_list) and defines three macros for stepping through a list of arguments wh... |
va_end(3) -- variable argument lists
|
A function may be called with a varying number of arguments of varying types. The include file declares a type (va_list) and defines three macros for stepping through a list of arguments wh... |
va_start(3) -- variable argument lists
|
A function may be called with a varying number of arguments of varying types. The include file declares a type (va_list) and defines three macros for stepping through a list of arguments wh... |