putwchar

Writes a wide character to the standard output (stdout) and returns the character.

Format

#include  <wchar.h>

wint_t putwchar  (wint_t wc);

Arguments

wc
An object of type wint_t.

Description

This function is identical to fputwc(wc, stdout).

Return Values
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 in this section. 

qabs, llabs (Alpha only)

Returns the absolute value of an integer as an __int64. llabs is a synonym for qabs.

Format

#include  <stdlib.h>

__int64 qabs  (__int64  j);

__int64 llabs  (__int64  j);

Argument

j
A value of type __int64.

qdiv, lldiv (Alpha only)

Returns the quotient and the remainder after the division of its arguments. lldiv is a synonym for qdiv.

Format

#include  <stdlib.h>

qdiv_t qdiv  (__int64 numer, __int64  denom);

lldiv_t lldiv  (__int64 numer, __int64  denom);

Arguments

numer
A numerator of type __int64.
denom
A denominator of type __int64.

Description

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;


Previous Page | Next Page | Table of Contents | Index