Go to main content

man pages section 3: Basic Library Functions

Exit Print View

Updated: Wednesday, July 27, 2022
 
 

putws(3C)

Name

putws - convert a string of Process Code characters to EUC characters

Synopsis

#include <stdio.h>
#include <widec.h>

int putws(wchar_t *s);

Description

The putws() function converts the Process Code string (terminated by a (wchar_t)NULL) pointed to by s, to an Extended UNIX Code (EUC) string followed by a NEWLINE character, and writes it to the standard output stream stdout. It does not write the terminal null character.

Return Values

The putws() function returns the number of Process Code characters transformed and written. It returns EOF if it attempts to write to a file that has not been opened for writing.

Attributes

See attributes(7) for descriptions of the following attributes:

ATTRIBUTE TYPE
ATTRIBUTE VALUE
MT-Level
MT-Safe

See Also

ferror(3C), fopen(3C), fread(3C), getws(3C), printf(3C), putwc(3C), attributes(7)