strlen.html 482 B

1234567891011121314151617181920212223242526
  1. <html>
  2. <head>
  3. <title>strlen</title>
  4. <body bgcolor=#ffffff>
  5. <h2 align=center>strlen</h2>
  6. <h4 align=center>OS/161 Reference Manual</h4>
  7. <h3>Name</h3>
  8. strlen - determine length of string
  9. <h3>Library</h3>
  10. Standard C Library (libc, -lc)
  11. <h3>Synopsis</h3>
  12. #include &lt;string.h&gt;<br>
  13. <br>
  14. size_t<br>
  15. strlen(const char *<em>string</em>);
  16. <h3>Description</h3>
  17. strlen returns the length of the string <em>string</em>. The length
  18. does not include the null terminator.
  19. </body>
  20. </html>