Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mblen(3int) [ultrix man page]

mblen(3int)															       mblen(3int)

Name
       mblen - determines the number of bytes comprising a multibyte character

Syntax
       #include <stdlib.h>

       int mblen (s, n)
       const char *s;
       size_t n;

Arguments
       s       The s argument is a pointer to the multibyte character string.

       n       The n argument is the maximum number of bytes in s that are examined.

Description
       If  s  is not a null pointer, the function determines the number of bytes comprising the multibyte character pointed to by s.  The function
       is equivalent to:
       (mbtowc((wchar_t *)0, s, n);)

       This function is affected by the LC_CTYPE category of the current locale.

Return Values
       If s is a null pointer, the function returns a zero value.  If s is not a null pointer, the function returns:

	  o  0 (if s points to the null character)

	  o  The number of bytes that comprise the multibyte character (if the next n or fewer bytes form a valid multibyte character)

	  o
	      -1 (if they do not form a valid multibyte character)

See Also
       mbtowc(3int), mbstowcs(3int), setlocale(3int), wctomb(3int), wcstombs(3int)

																       mblen(3int)

Check Out this Related Man Page

mblen(3C)						   Standard C Library Functions 						 mblen(3C)

NAME
mblen - get number of bytes in a character SYNOPSIS
#include <stdlib.h> int mblen(const char *s, size_t n); DESCRIPTION
If s is not a null pointer, mblen() determines the number of bytes constituting the character pointed to by s. It is equivalent to: mbtowc((wchar_t *)0, s, n); A call with s as a null pointer causes this function to return 0. The behavior of this function is affected by the LC_CTYPE category of the current locale. RETURN VALUES
If s is a null pointer, mblen() returns 0. It s is not a null pointer, mblen() returns 0 (if s points to the null byte), the number of bytes that constitute the character (if the next n or fewer bytes form a valid character), or -1 (if they do not form a valid character) and may set errno to indicate the error. In no case will the value returned be greater than n or the value of the MB_CUR_MAX macro. ERRORS
The mblen() function may fail if: EILSEQ Invalid character sequence is detected. USAGE
The mblen() function can be used safely in multithreaded applications, as long as setlocale(3C) is not being called to change the locale. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |CSI |Enabled | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe with exceptions | +-----------------------------+-----------------------------+ SEE ALSO
mbstowcs(3C), mbtowc(3C), setlocale(3C), wcstombs(3C), wctomb(3C), attributes(5), standards(5) SunOS 5.10 24 Jul 2002 mblen(3C)
Man Page

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How do I count # of char. in a word?

I havent done shell scripting in quite some time. I want to know how to count the number of characters in a word, specifically a parameter. Example: myscript hello I want "myscript" to return the number of charcaters in the parameter "hello". Any ideas? (9 Replies)
Discussion started by: xadamz23
9 Replies

2. Programming

strlen for UTF-8

My OS (Debian) and gcc use the UTF-8 locale. This code says that the char size is 1 byte but the size of 'a' is really 4 bytes. int main(void) { setlocale(LC_ALL, "en_US.UTF-8"); printf("Char size: %i\nSize of char 'a': %i\nSize of Euro sign '€': %i\nLength of Euro sign: %i\n",... (8 Replies)
Discussion started by: cyler
8 Replies

3. Shell Programming and Scripting

I want to find the difference between two files, only for the header (column names)

Hi All, I want to find the difference between two files, by checking only the headers (column names) and report if any new column is added in the latest file. For Ex: If the file "declartion.txt has these columns url;image;id;showcase_id;showcase_name and the actual file "feed.txt" has... (34 Replies)
Discussion started by: Praveen Pandit
34 Replies