Skip to content
This repository has been archived by the owner on Nov 15, 2018. It is now read-only.

Latest commit

 

History

History
36 lines (26 loc) · 789 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 789 Bytes

asm-minilibc

This project was the only assembly project from my second year at EPITECH (2017-2018)

The goal was to create a dynamic ELF library to replace some of the standard C library functions.


Language: x86-64 assembly

Group size: 1

Project duration: ~1 month (26/02/2018 - 25/03/2018)

Compilation: on GNU/Linux via Makefile

Assembly files are compiled with the nasm assembler.


Passed tests:

- strncmp:       0%
- strchr:       70%
- strlen:      100%
- memset:      100%
- memcpy:      100%
- strcmp:      100%
- memmove:     100%
- strcmp:      100%
- strcasecmp:  100%
- rindex:      100%
- strstr:      100%
- strpbrk:     100%
- strcspn:     100%