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

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

Unix line breaks.

  • Property mode set to 100644
File size: 458 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
12strlen(s)
13register char *s;
14{
15 register int n = 0;
16
17 while (*s++ != '\0')
18 ++n;
19
20 return (n);
21}
Note: See TracBrowser for help on using the repository browser.