mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
15 lines
146 B
C++
15 lines
146 B
C++
|
#include "string.h"
|
||
|
|
||
|
extern "C" {
|
||
|
|
||
|
size_t strlen(const char* str)
|
||
|
{
|
||
|
size_t len = 0;
|
||
|
while (*(str++))
|
||
|
++len;
|
||
|
return len;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|