Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/erwan-simon/asm_library
Reimplementation of basic functions in assembly
https://github.com/erwan-simon/asm_library
asm assembly epitech library rindex strchr strcmp strcspn strlen strncmp strpbrk strstr
Last synced: about 5 hours ago
JSON representation
Reimplementation of basic functions in assembly
- Host: GitHub
- URL: https://github.com/erwan-simon/asm_library
- Owner: erwan-simon
- License: mit
- Created: 2019-03-12T18:38:28.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-12T19:53:39.000Z (almost 6 years ago)
- Last Synced: 2025-01-13T10:35:11.389Z (19 days ago)
- Topics: asm, assembly, epitech, library, rindex, strchr, strcmp, strcspn, strlen, strncmp, strpbrk, strstr
- Language: C
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# asm_library
Reimplementation of basic functions in assembly* [rindex](https://linux.die.net/man/3/rindex) : locate character in string
* [strchr](https://linux.die.net/man/3/strchr) : locate character in string
* [strcmp](https://linux.die.net/man/3/strcmp) : compare two strings
* [strspn](https://linux.die.net/man/3/strspn) : search a string for a set of bytes
* [strlen](https://linux.die.net/man/3/strlen) : calculate the length of a string
* [strncmp](https://linux.die.net/man/3/strncmp) : compare two strings
* [strpbrk](https://linux.die.net/man/3/strpbrk) : search a string for any of a set of bytes
* [strstr](https://linux.die.net/man/3/strstr) : locate a substring