https://github.com/its-alex/libft
Libft at 42 aim to reproduce most of libc's functions
https://github.com/its-alex/libft
c itoa libc make makefile putchar putendl putnbr putstr sort strjoin
Last synced: 9 days ago
JSON representation
Libft at 42 aim to reproduce most of libc's functions
- Host: GitHub
- URL: https://github.com/its-alex/libft
- Owner: Its-Alex
- Created: 2016-10-26T14:00:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-15T10:21:09.000Z (about 8 years ago)
- Last Synced: 2025-10-30T17:48:21.290Z (8 months ago)
- Topics: c, itoa, libc, make, makefile, putchar, putendl, putnbr, putstr, sort, strjoin
- Language: C
- Homepage:
- Size: 129 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Libft
Library who contain most of libc's functions
## How to
### Compile
```
$ make
```
### Clean
Delete all compilation files
```
$ make clean
```
Delete all compilations files and binarie
```
$ make fclean
```
## Current added
* [x] [atoi.c](/srcs/ft_atoi.c)
* [x] [bzero.c](/srcs/ft_bzero.c)
* [x] [error.c](/srcs/ft_error.c)
* [x] [freetab.c](/srcs/ft_freetab.c)
* [x] [get_next_line.c](/srcs/ft_get_next_line.c)
* [x] [isalnum.c](/srcs/ft_isalnum.c)
* [x] [isalpha.c](/srcs/ft_isalpha.c)
* [x] [isascii.c](/srcs/ft_isascii.c)
* [x] [isdigit.c](/srcs/ft_isdigit.c)
* [x] [isprint.c](/srcs/ft_isprint.c)
* [x] [itoa_base.c](/srcs/ft_itoa_base.c)
* [x] [itoa.c](/srcs/ft_itoa.c)
* [x] [lstadd.c](/srcs/ft_lstadd.c)
* [x] [lstaddend.c](/srcs/ft_lstaddend.c)
* [x] [lstdel.c](/srcs/ft_lstdel.c)
* [x] [lstdelone.c](/srcs/ft_lstdelone.c)
* [x] [lstiter.c](/srcs/ft_lstiter.c)
* [x] [lstmap.c](/srcs/ft_lstmap.c)
* [x] [lstnew.c](/srcs/ft_lstnew.c)
* [x] [lststr_sort.c](/srcs/ft_lststr_sort.c)
* [x] [lststr_sortrev.c](/srcs/ft_lststr_sortrev.c)
* [x] [max.c](/srcs/ft_max.c)
* [x] [memalloc.c](/srcs/ft_memalloc.c)
* [x] [memccpy.c](/srcs/ft_memccpy.c)
* [x] [memchr.c](/srcs/ft_memchr.c)
* [x] [memcmp.c](/srcs/ft_memcmp.c)
* [x] [memcpy.c](/srcs/ft_memcpy.c)
* [x] [memdel.c](/srcs/ft_memdel.c)
* [x] [memmove.c](/srcs/ft_memmove.c)
* [x] [memset.c](/srcs/ft_memset.c)
* [x] [min.c](/srcs/ft_min.c)
* [x] [miniprintf.c](/srcs/ft_miniprintf.c)
* [x] [putchar.c](/srcs/ft_putchar.c)
* [x] [putchar_fd.c](/srcs/ft_putchar_fd.c)
* [x] [putdbl.c](/srcs/ft_putdbl.c)
* [x] [putdbl_fd.c](/srcs/ft_putdbl_fd.c)
* [x] [putendl.c](/srcs/ft_putendl.c)
* [x] [putendl_fd.c](/srcs/ft_putendl_fd.c)
* [x] [putlong.c](/srcs/ft_putlong.c)
* [x] [putlong_fd.c](/srcs/ft_putlong_fd.c)
* [x] [putnbr.c](/srcs/ft_putnbr.c)
* [x] [putnbr_fd.c](/srcs/ft_putnbr_fd.c)
* [x] [putstr.c](/srcs/ft_putstr.c)
* [x] [putstr_color.c](/srcs/ft_putstr_color.c)
* [x] [putstr_fd.c](/srcs/ft_putstr_fd.c)
* [x] [sort_int_tab.c](/srcs/ft_sort_int_tab.c)
* [x] [strcat.c](/srcs/ft_strcat.c)
* [x] [strchr.c](/srcs/ft_strchr.c)
* [x] [strclr.c](/srcs/ft_strclr.c)
* [x] [strcmp.c](/srcs/ft_strcmp.c)
* [x] [strcpy.c](/srcs/ft_strcpy.c)
* [x] [strdel.c](/srcs/ft_strdel.c)
* [x] [strdup.c](/srcs/ft_strdup.c)
* [x] [strequ.c](/srcs/ft_strequ.c)
* [x] [striter.c](/srcs/ft_striter.c)
* [x] [striteri.c](/srcs/ft_striteri.c)
* [x] [strjoin.c](/srcs/ft_strjoin.c)
* [x] [strjoin_free.c](/srcs/ft_strjoin_free.c)
* [x] [strlcat.c](/srcs/ft_strlcat.c)
* [x] [strlen.c](/srcs/ft_strlen.c)
* [x] [strmap.c](/srcs/ft_strmap.c)
* [x] [strmapi.c](/srcs/ft_strmapi.c)
* [x] [strncat.c](/srcs/ft_strncat.c)
* [x] [strncmp.c](/srcs/ft_strncmp.c)
* [x] [strncpy.c](/srcs/ft_strncpy.c)
* [x] [strnequ.c](/srcs/ft_strnequ.c)
* [x] [strnew.c](/srcs/ft_strnew.c)
* [x] [strnstr.c](/srcs/ft_strnstr.c)
* [x] [strrchr.c](/srcs/ft_strrchr.c)
* [x] [strrev.c](/srcs/ft_strrev.c)
* [x] [strsplit.c](/srcs/ft_strsplit.c)
* [x] [strstr.c](/srcs/ft_strstr.c)
* [x] [strsub.c](/srcs/ft_strsub.c)
* [x] [strtrim.c](/srcs/ft_strtrim.c)
* [x] [swap.c](/srcs/ft_swap.c)
* [x] [tolower.c](/srcs/ft_tolower.c)
* [x] [toupper.c](/srcs/ft_toupper.c)
## License
[MIT](https://fr.wikipedia.org/wiki/Licence_MIT)