1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/arch/util.h

18 lines
277 B
C
Raw Normal View History

2017-11-01 01:01:29 -04:00
#ifndef TAILIX_KERNEL_INCLUDED_UTIL
#define TAILIX_KERNEL_INCLUDED_UTIL 1
2017-11-01 06:08:09 -04:00
static inline unsigned int strlen(const char *s);
2017-11-01 01:01:29 -04:00
2017-11-01 06:08:09 -04:00
unsigned int strlen(const char *const s)
2017-11-01 01:01:29 -04:00
{
2017-11-01 06:08:09 -04:00
unsigned int result = 0;
2017-11-01 01:01:29 -04:00
2017-11-01 06:08:09 -04:00
while (s[result]) {
++result;
2017-11-01 01:01:29 -04:00
}
2017-11-01 06:08:09 -04:00
return result;
2017-11-01 01:01:29 -04:00
}
#endif