mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-12 19:50:46 +00:00
8 lines
120 B
C
8 lines
120 B
C
#include <string.h>
|
|
|
|
size_t strlen(const char *string)
|
|
{ const char *s=string;
|
|
|
|
do;while(*s++); return ~(string-s);
|
|
}
|