[Previous] [Contents] [Next]

mbsinit()

Determine conversion object status

Synopsis:

#include <wchar.h>

int mbsinit( const mbstate_t * ps );

Library:

libc

Description:

Determines if ps is a NULL pointer.

Returns:

=/= 0
The ps argument is a NULL pointer or *ps designates an initial conversion state.
0
Everything else.

Classification:

ANSI

Safety:
Cancellation point No
Interrupt handler No
Signal handler Yes
Thread Yes

See also:

errno

"Multibyte character functions" and "Wide-character functions" in the summary of functions chapter.


[Previous] [Contents] [Next]