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

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

Awesome Lists containing this project

README

          

LibftASM
========

[![GitHub license](https://img.shields.io/github/license/mashape/apistatus.svg)]()

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).