source: buchla-68k/libsm/strlen.c@ 0580615

Last change on this file since 0580615 was 0580615, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Point of no return.

  • Property mode set to 100644
File size: 446 bytes
Line 
1/*
2 =============================================================================
3 strlen.c -- string length function ala' Unix(tm)
4 Version 1 -- 1987-02-11 -- D.N. Lynx Crowe
5
6 Returns the number of non-NULL bytes in string argument.
7 =============================================================================
8*/
9
10
11int strlen(char *s)
12{
13 register int n = 0;
14
15 while (*s++ != '\0')
16 ++n;
17
18 return (n);
19}
Note: See TracBrowser for help on using the repository browser.