Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

strlen(3) [x11r4 man page]

STRLEN(3)						     Linux Programmer's Manual							 STRLEN(3)

NAME
strlen - calculate the length of a string SYNOPSIS
#include <string.h> size_t strlen(const char *s); DESCRIPTION
The strlen() function calculates the length of the string pointed to by s, excluding the terminating null byte (''). RETURN VALUE
The strlen() function returns the number of characters in the string pointed to by s. ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). +----------+---------------+---------+ |Interface | Attribute | Value | +----------+---------------+---------+ |strlen() | Thread safety | MT-Safe | +----------+---------------+---------+ CONFORMING TO
POSIX.1-2001, POSIX.1-2008, C89, C99, C11, SVr4, 4.3BSD. SEE ALSO
string(3), strnlen(3), wcslen(3), wcsnlen(3) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. GNU
2016-03-15 STRLEN(3)

Check Out this Related Man Page

STRLEN(3)						     Linux Programmer's Manual							 STRLEN(3)

NAME
strlen - calculate the length of a string SYNOPSIS
#include <string.h> size_t strlen(const char *s); DESCRIPTION
The strlen() function calculates the length of the string pointed to by s, excluding the terminating null byte (''). RETURN VALUE
The strlen() function returns the number of characters in the string pointed to by s. ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). +----------+---------------+---------+ |Interface | Attribute | Value | +----------+---------------+---------+ |strlen() | Thread safety | MT-Safe | +----------+---------------+---------+ CONFORMING TO
POSIX.1-2001, POSIX.1-2008, C89, C99, C11, SVr4, 4.3BSD. SEE ALSO
string(3), strnlen(3), wcslen(3), wcsnlen(3) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. GNU
2016-03-15 STRLEN(3)
Man Page

5 More Discussions You Might Find Interesting

1. Programming

Problems with Strlen

hello, i have a problem with strlen. I have written this: for(y=13,z=0; cInBuf!=' ';y++) { cBuf=cInBuf; z++; } len = strlen(cBuf); out=len/2; fprintf(outfile,"F%i",out); If strlen is e.g. 22, it write F22. I want to write F2F2. How can i do this?... (5 Replies)
Discussion started by: ACeD
5 Replies

2. Programming

How to free the memory?

For example if i have the piece of code as follows: CountryName = (char *)malloc((strlen(CountryName)+1)*sizeof(char)); memset(CountryName, 0, strlen(CountryName)+1); CountryName = SOME VALUE Now how do i free the memory after use of this code???? :confused: (3 Replies)
Discussion started by: jazz
3 Replies

3. UNIX for Advanced & Expert Users

length function

Hi,:cool: can any body tell me what is the function to get the length of a string in unix?I have used functions like len,length,strlen, but they are not working. cheers RRK (3 Replies)
Discussion started by: ravi raj kumar
3 Replies

4. Programming

'strlen' of a constant string

In a declaration, I have: const char comment_begin = "<!--"; const char comment_end = "-->"; const int comment_begin_len = strlen(comment_begin); const int comment_end_len = strlen(comment_end); When I compile, I get the warnings: emhttpc.c:64: warning: initializer element is not... (10 Replies)
Discussion started by: cleopard
10 Replies

5. Programming

Fastest way to find the length of string in c

Hi all, We use strlen() fun provided by library to find the length of a string. Looking inside of it, it has some different mechanism to find the length of string. Normally, we scan the string byte by byte until the '\0' character. It takes a logn time to count length. The Library strlen()... (2 Replies)
Discussion started by: yogeshrl9072
2 Replies