summaryrefslogtreecommitdiff
path: root/lib/string.c
blob: 3d3f4a15863866ecf951cbc4fd63182d2734c6c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <sophialib.h>

size_t strlen(const char *s)
{
    size_t l = 0;

    while (*s++) l++;

    return l;
}