https://github.com/adjivas/libftasm
Libft writed in asm
https://github.com/adjivas/libftasm
Last synced: about 1 year ago
JSON representation
Libft writed in asm
- Host: GitHub
- URL: https://github.com/adjivas/libftasm
- Owner: adjivas
- License: mit
- Created: 2015-08-22T16:54:25.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-08-22T17:11:00.000Z (almost 11 years ago)
- Last Synced: 2025-02-05T08:16:38.857Z (over 1 year ago)
- Language: Assembly
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
LibftASM
========
[]()
This library is a list of basical functions written in ASM for a project from 42.
## Directory-Tree:
```shell
.
|__ LICENSE
|__ Makefile
|__ README.md
|__ inc
| \__ libftasm.h
\__ src
|__ ft_bzero.s
|__ ft_cat.s
|__ ft_isalnum.s
|__ ft_isalpha.s
|__ ft_isascii.s
|__ ft_isdigit.s
|__ ft_islower.s
|__ ft_isprint.s
|__ ft_isupper.s
|__ ft_memcpy.s
|__ ft_memset.s
|__ ft_puts.s
|__ ft_puts_green.s
|__ ft_puts_red.s
|__ ft_strcat.s
|__ ft_strdup.s
|__ ft_strlen.s
|__ ft_tolower.s
\__ ft_toupper.s
```
# License
*libftasm*'s code in this repo uses the [MIT](http://opensource.org/licenses/MIT) [license](https://github.com/adjivas/libftasm/blob/master/LICENSE).