|
NAMEmblen —
get number of bytes in a character
LIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <stdlib.h>
int
DESCRIPTIONThemblen () function computes the length in bytes of a
multibyte character mbchar according to the current
conversion state. Up to nbytes bytes are examined.
A call with a null mbchar pointer returns nonzero if the current locale requires shift states, zero otherwise; if shift states are required, the shift state is reset to the initial state. RETURN VALUESIf mbchar isNULL , the
mblen () function returns nonzero if shift states are
supported, zero otherwise.
Otherwise, if mbchar is not a null pointer,
ERRORSThemblen () function will fail if:
SEE ALSOmbrlen(3), mbtowc(3), multibyte(3)STANDARDSThemblen () function conforms to
ISO/IEC 9899:1999 (“ISO C99”).
Visit the GSP FreeBSD Man Page Interface. |