An open API service indexing awesome lists of open source software.

https://github.com/vendethiel/strlen.c

Very simple strlen() - no unrolling.
https://github.com/vendethiel/strlen.c

c strlen

Last synced: 3 months ago
JSON representation

Very simple strlen() - no unrolling.

Awesome Lists containing this project

README

        

# Strlen

Returns the string length.

# Installation

`$ clib install nami-doc/strlen.c`

## Example

```c
char *str = "hello world ";
strlen(str);
```