diff --git a/C_06/playlist.html b/C_06/playlist.html index 0505f84..c7a6807 100644 --- a/C_06/playlist.html +++ b/C_06/playlist.html @@ -1,5 +1,5 @@ -
AboutPressCopyrightContact usCreatorsAdvertiseDevelopersTermsPrivacyPolicy & SafetyHow YouTube worksTest new features
PEDAGO@42 - C-06 - YouTube
\ No newline at end of file +
AboutPressCopyrightContact usCreatorsAdvertiseDevelopersTermsPrivacyPolicy & SafetyHow YouTube worksTest new features
PEDAGO@42 - C-06 - YouTube
\ No newline at end of file diff --git a/C_07/playlist.html b/C_07/playlist.html new file mode 100644 index 0000000..55a390f --- /dev/null +++ b/C_07/playlist.html @@ -0,0 +1,21 @@ +
AboutPressCopyrightContact usCreatorsAdvertiseDevelopersTermsPrivacyPolicy & SafetyHow YouTube worksTest new features
PEDAGO@42 - C-07 - YouTube
\ No newline at end of file diff --git a/C_08/playlist.html b/C_08/playlist.html new file mode 100644 index 0000000..c7ee573 --- /dev/null +++ b/C_08/playlist.html @@ -0,0 +1,21 @@ +
AboutPressCopyrightContact usCreatorsAdvertiseDevelopersTermsPrivacyPolicy & SafetyHow YouTube worksTest new features
PEDAGO@42 - C-08 - YouTube
\ No newline at end of file diff --git a/C_09/Makefile b/C_09/Makefile new file mode 100644 index 0000000..2b16cfb --- /dev/null +++ b/C_09/Makefile @@ -0,0 +1,23 @@ + +# +# Copyright (c) 2021 Guy Baconniere. +# +## How to use this Makefile +# +# cd git +# mkdir ex00 +# cd ex00 +# make -f ../../Makefile ex00 +# + +clone: + @git clone git@vogsphere.42lausanne.ch:vogsphere/intra-uuid-8c6298c5-3398-4408-8f72-f127b4ef29de-3736152 git + +cc: + @norminette -R CheckForbiddenSourceHeader + @gcc -Wall -Wextra -Werror -o a.out *.c + @./a.out + @rm -f a.out + +all: clone + diff --git a/C_09/fr.subject.pdf b/C_09/fr.subject.pdf new file mode 100644 index 0000000..8a2bee5 Binary files /dev/null and b/C_09/fr.subject.pdf differ diff --git a/C_09/git/ex00/ft.h b/C_09/git/ex00/ft.h new file mode 100644 index 0000000..ed4dc9f --- /dev/null +++ b/C_09/git/ex00/ft.h @@ -0,0 +1,21 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: gbaconni +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2021/08/20 10:17:09 by gbaconni #+# #+# */ +/* Updated: 2021/08/20 12:05:50 by gbaconni ### ########.fr */ +/* */ +/* ************************************************************************** */ +#ifndef FT_H +# define FT_H + +void ft_putchar(char c); +void ft_swap(int *a, int *b); +void ft_putstr(char *str); +int ft_strlen(char *str); +int ft_strcmp(char *s1, char *s2); + +#endif diff --git a/C_09/git/ex00/main.c b/C_09/git/ex00/main.c new file mode 100644 index 0000000..6cbfca3 --- /dev/null +++ b/C_09/git/ex00/main.c @@ -0,0 +1,19 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* main.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: gbaconni +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2021/08/20 10:26:50 by gbaconni #+# #+# */ +/* Updated: 2021/08/20 10:34:14 by gbaconni ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "ft.h" + +int main(int argc, char *argv[]) +{ + (void) argc; + (void) argv; +} diff --git a/C_09/git/ex00/main.sh b/C_09/git/ex00/main.sh new file mode 100755 index 0000000..eb5bd76 --- /dev/null +++ b/C_09/git/ex00/main.sh @@ -0,0 +1,8 @@ +#!/bin/sh +set -e +#norminette -R CheckForbiddenSourceHeader ft_*.c +norminette -R CheckDefine -R CheckForbiddenSourceHeader *.c +gcc -Wall -Wextra -Werror -o a.out *.c +echo $(basename $PWD): +./a.out +rm -f a.out diff --git a/C_09/playlist.html b/C_09/playlist.html new file mode 100644 index 0000000..7768fc2 --- /dev/null +++ b/C_09/playlist.html @@ -0,0 +1,21 @@ +
AboutPressCopyrightContact usCreatorsAdvertiseDevelopersTermsPrivacyPolicy & SafetyHow YouTube worksTest new features
PEDAGO@42 - C-09 - YouTube
\ No newline at end of file