Previous | Contents | Index |
Writes a single character to the standard output ( stdout ) and returns the character.
#include <stdio.h>int putchar (int character);
character
An object of type int .
The putchar function is identical to fputc (character, stdout ).Compiling with the __UNIX_PUTC macro defined enables an optimization that uses a faster, inlined version of this function.
character Indicates success. EOF Indicates output errors.
Same as putchar , except used only within a scope protected by flockfile and funlockfile .
#include <stdio.h>int putchar_unlocked (int character);
character
An object of type int .
The reentrant version of the putchar function is locked against multiple threads calling it simultaneously. This incurs overhead to ensure integrity of the output stream. The unlocked version of this call, putchar_unlocked can be used to avoid the overhead. The putchar_unlocked function is functionally identical to the putchar function, except that it is not required to be implemented in a thread-safe manner. The putchar_unlocked function can be safely used only within a scope that is protected by the flockfile and funlockfile functions used as a pair. The caller must ensure that the stream is locked before putchar_unlocked is used.Compiling with the __UNIX_PUTC macro defined enables an optimization that uses a faster, inlined version of this function.
See also flockfile , ftrylockfile , and funlockfile .
x The next character from stdin , converted to int . EOF Indicates the end-of-file or an error.
Sets an environmental variable.
#include <stdlib.h>int putenv (const char *string);
string
A pointer to a name=value string.
The putenv function sets the value of an environment variable by altering an existing variable or by creating a new one. The string argument points to a string of the form name=value, where name is the environment variable and value is the new value for it.The string pointed to by string becomes part of the environment, so altering the string changes the environment. When a new string-defining name is passed to putenv , the space used by string is no longer used.
0 Indicates success. - 1 Indicates an error. errno is set to ENOMEM---Not enough memory available to expand the environment list.
The putenv function cannot take a 64-bit address. See Section 1.10.
Writes a character string to the standard output ( stdout ) followed by a new-line character.
#include <stdio.h>int puts (const char *str);
str
A pointer to a character string.
The puts function does not copy the terminating null character to the output stream.
Nonnegative value Indicates success. EOF Indicates output errors.
Writes characters to a specified file.
#include <stdio.h>int putw (int integer, FILE *file_ptr);
integer
An object of type int or long .file_ptr
A file pointer.
The putw function writes four characters to the output file as an int . No conversion is performed.
integer Indicates success. EOF Indicates output errors.
Converts a wide character to its corresponding multibyte value, and writes the result to a specified file.
#include <wchar.h>wint_t putwc (wint_t wc, FILE *file_ptr);
wc
An object of type wint_t .file_ptr
A file pointer.
Since putwc might be implemented as a macro, a file pointer argument with side effects (for example putwc (wc, *f++) ) might be evaluated incorrectly. In such a case, use the fputwc function instead.See also fputwc .
x The character written to the file. Indicates success. WEOF Indicates an output error. The function sets errno . For a list of the errno values set by this function, see fputwc .
Writes a wide character to the standard output ( stdout ) and returns the character.
#include <wchar.h>wint_t putwchar (wint_t wc);
wc
An object of type wint_t .
The putwchar function is identical to fputwc (wc, stdout ).
x The character written to the file. Indicates success. WEOF Indicates an output error. The function sets errno . For a list of the errno values set by this function, see fputwc .
Writes into a given position within a file without changing the file pointer.
#include <unistd.h>ssize_t pwrite (int file_desc, const void *buffer, size_t nbytes, off_t offset);
file_desc
A file descriptor that refers to a file currently opened for writing or updating.buffer
The address of contiguous storage from which the output data is taken.nbytes
The maximum number of bytes involved in the write operation.offset
The offset for the desired position inside the file.
The pwrite function performs the same action as write , except that it writes into a given position in the file without changing the file pointer. The first three arguments to pwrite are the same as for write , with the addition of a fourth argument offset for the desired position inside the file.
n The number of bytes written. - 1 Upon failure, the file pointer remains unchanged and pwrite sets errno to one of the following values:
- EINVAL -- The offset argument is invalid. The value is negative.
- ESPIPE -- fildes is associated with a pipe or FIFO.
Returns the absolute value of an integer as an __int64 . llabs is a synonym for qabs .
#include <stdlib.h>__int64 qabs (__int64 j);
__int64 llabs (__int64 j);
j
A value of type __int64 .
Returns the quotient and the remainder after the division of its arguments. lldiv is a synonym for qdiv .
#include <stdlib.h>qdiv_t qdiv (__int64 numer, __int64 denom);
lldiv_t lldiv (__int64 numer, __int64 denom);
numer
A numerator of type __int64 .denom
A denominator of type __int64 .
The types qdiv_t and lldiv_t are defined in the <stdlib.h> header file as follows:
typedef struct { __int64 quot, rem; } qdiv_t, lldiv_t;
Sorts an array of objects in place. It implements the quick-sort algorithm.
#include <stdlib.h>Function Variants The qsort function has variants named _qsort32 and _qsort64 for use with 32-bit and 64-bit pointer sizes, respectively. See Section 1.10 for more information on using pointer-size-specific functions.void qsort (void *base, size_t nmemb, size_t size, int (*compar) (const void *, const void *));
base
A pointer to the first member of the array. The pointer should be of type pointer-to-element and cast to type pointer-to-character.nmemb
The number of objects in the array.size
The size of an object, in bytes.compar
A pointer to the comparison function.
Two arguments are passed to the comparison function pointed to by compar. The two arguments point to the objects being compared. Depending on whether the first argument is less than, equal to, or greater than the second argument, the comparison function returns an integer less then, equal to, or greater than 0.The comparison function compar need not compare every byte, so arbitrary data might be contained in the objects in addition to the values being compared.
The order in the output of two objects that compare as equal is unpredictable.
Generates a specified software signal. Generating a signal causes the action routine established by the signal , ssignal , or sigvec function to be invoked.
#include <signal.h>int raise (int sig); (ANSI C)
int raise (int sig[, int sigcode]); (HP C EXTENSION)
sig
The signal to be generated.sigcode
An optional signal code, available only when not compiling in strict ANSI C mode. For example, signal SIGFPE---the arithmetic trap signal---has 10 different codes, each representing a different type of arithmetic trap.The signal codes can be represented by mnemonics or numbers. The arithmetic trap codes are represented by the numbers 1 to 10; the SIGILL codes are represented by the numbers 0 to 2. The code values are defined in the <signal.h> header file. See Tables 4-4 and 4-5 for a list of signal mnemonics, codes, and corresponding OpenVMS exceptions.
Calling the raise function has one of the following results:
- If raise specifies a sig argument that is outside the range defined in the <signal.h> header file, then the raise function returns 0, and the errno variable is set to EINVAL.
- If signal , ssignal , or sigvec establishes SIG_DFL (default action) for the signal, then the functions do not return. The image is exited with the OpenVMS error code corresponding to the signal.
- If signal , ssignal , or sigvec establishes SIG_IGN (ignore signal) as the action for the signal, then raise returns its argument, sig.
- signal , ssignal , or sigvec must establish an action function for the signal. That function is called and its return value is returned by raise .
See Chapter 4 for more information on signal processing.
See also gsignal , signal , ssignal , and sigvec .
0 If successful. nonzero If unsuccessful.
Returns pseudorandom numbers in the range 0 to 231 - 1.
#include <stdlib.h>int rand (void);
int rand_r (unsigned int seed); (ALPHA, I64)
seed
An initial seed value.
The rand function computes a sequence of pseudorandom integers in the range 0 to {RAND_MAX} with a period of at least 232.The rand_r function computes a sequence of pseudorandom integers in the range 0 to {RAND_MAX}. The value of the {RAND_MAX} macro will be at least 32767.
If rand_r is called with the same initial value for the object pointed to by seed and that object is not modified between successive returns and calls to rand_r , the same sequence is generated.
See also srand .
For other random-number algorithms, see random and all the * 48 functions.
n A pseudorandom number.
Generates pseudorandom numbers in a more random sequence.
#include <stdlib.h>long int random (void);
The random function is a random-number generator that has virtually the same calling sequence and initialization properties as the rand function, but produces sequences that are more random. The low 12 bits generated by rand go through a cyclic pattern. All bits generated by random are usable. For example, random () &1 produces a random binary value.The random function uses a nonlinear, additive-feedback, random-number generator employing a default state-array size of 31 integers to return successive pseudorandom numbers in the range from 0 to 231-1 . The period of this random-number generator is approximately 16*( 231-1 ). The size of the state array determines the period of the random-number generator. Increasing the state array size increases the period.
With a full 256 bytes of state information, the period of the random-number generator is greater than 269 , and is sufficient for most purposes.
Like the rand function, the random function produces by default a sequence of numbers that you can duplicate by calling the srandom function with a value of 1 as the seed. The srandom function, unlike the srand function, does not return the old seed because the amount of state information used is more than a single word.
See also rand , srand , srandom , setstate , and initstate .
n A random number.
Raw mode only works with the Curses input routines [w]getch and [w]getstr . Raw mode is not supported with the HP C RTL emulation of UNIX I/O, Terminal I/O, or Standard I/O.
#include <curses.h>raw()
noraw()
Raw mode reads are satisfied on one of two conditions: after a minimum number (5) of characters are input at the terminal or after waiting a fixed time (10 seconds) from receipt of any characters from the terminal.
/* Example of standard and raw input in Curses package. */ #include <curses.h> main() { WINDOW *win1; char vert = '.', hor = '.', str[80]; /* Initialize standard screen, turn echo off. */ initscr(); noecho(); /* Define a user window. */ win1 = newwin(22, 78, 1, 1); leaveok(win1, TRUE); leaveok(stdscr, TRUE); box(stdscr, vert, hor); /* Reset the video, refresh(redraw) both windows. */ mvwaddstr(win1, 2, 2, "Test line terminated input"); wrefresh(win1); /* Do some input and output it. */ nocrmode(); wgetstr(win1, str); mvwaddstr(win1, 5, 5, str); mvwaddstr(win1, 7, 7, "Type something to clear screen"); wrefresh(win1); /* Get another character then delete the window. */ wgetch(win1); wclear(win1); mvwaddstr(win1, 2, 2, "Test raw input"); wrefresh(win1); /* Do some raw input 5 chars or timeout - and output it. */ raw(); getstr(str); noraw(); mvwaddstr(win1, 5, 5, str); mvwaddstr(win1, 7, 7, "Raw input completed"); wrefresh(win1); endwin(); }
Previous | Next | Contents | Index |