Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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