diff options
119 files changed, 6098 insertions, 422 deletions
@@ -2,6 +2,8 @@ *.so *.a *.ghc +*.dSYM a.out -main.c -build/* +test_libft +obj/* +rendu.makefile diff --git a/.libftignore b/.libftignore new file mode 100644 index 0000000..68d827a --- /dev/null +++ b/.libftignore @@ -0,0 +1 @@ +*ft_printf* diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..94e4879 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,4 @@ +language: c +compiler: gcc + +script: make all && make test @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 HappyTramp + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERC |
