~ubuntu-branches/ubuntu/oneiric/daemontools/oneiric

« back to all changes in this revision

Viewing changes to daemontools-0.76/src/str_len.c

  • Committer: Bazaar Package Importer
  • Author(s): Gerrit Pape
  • Date: 2008-04-16 21:20:38 UTC
  • Revision ID: james.westby@ubuntu.com-20080416212038-2ix54o7w5m8lpvni
Tags: upstream-0.76
ImportĀ upstreamĀ versionĀ 0.76

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Public domain. */
 
2
 
 
3
#include "str.h"
 
4
 
 
5
unsigned int str_len(const char *s)
 
6
{
 
7
  register const char *t;
 
8
 
 
9
  t = s;
 
10
  for (;;) {
 
11
    if (!*t) return t - s; ++t;
 
12
    if (!*t) return t - s; ++t;
 
13
    if (!*t) return t - s; ++t;
 
14
    if (!*t) return t - s; ++t;
 
15
  }
 
16
}