shithub: scc

ref: 1fc37685fd10a06a75bab2f6a147dd6e810b2b7f
dir: /doc/man3/strlen.3/

View raw version
.TH strlen 3
.SH NAME
strlen - get the length of a string
.SH SYNOPSIS
#include <string.h>

size_t strlen(const char *s)
.SH DESCRIPTION
The
.BR strlen ()
function computes the length of the string
pointed to by
.I s
.SH RETURN VALUE
The function shall return the length of the string
.IR s .
.SH STANDARDS
ISO/IEC 9899:1999 Section 7.21.6.3