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.
- Host: GitHub
- URL: https://github.com/vendethiel/strlen.c
- Owner: vendethiel
- Created: 2013-04-19T13:32:25.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2022-03-14T09:57:21.000Z (about 3 years ago)
- Last Synced: 2025-01-27T08:45:09.877Z (4 months ago)
- Topics: c, strlen
- Language: C
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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);
```