sync
This commit is contained in:
18
C_09/git_old2/ex00/ft_putchar.c
Normal file
18
C_09/git_old2/ex00/ft_putchar.c
Normal file
@@ -0,0 +1,18 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_putchar.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: gbaconni <gbaconni@42lausanne.ch> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2021/08/22 14:41:08 by gbaconni #+# #+# */
|
||||
/* Updated: 2021/08/22 14:41:17 by gbaconni ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
void ft_putchar(char c)
|
||||
{
|
||||
write(1, &c, 1);
|
||||
}
|
||||
22
C_09/git_old2/ex00/ft_putstr.c
Normal file
22
C_09/git_old2/ex00/ft_putstr.c
Normal file
@@ -0,0 +1,22 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_putstr.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: gbaconni <gbaconni@42lausanne.ch> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2021/08/22 14:42:02 by gbaconni #+# #+# */
|
||||
/* Updated: 2021/08/22 14:42:04 by gbaconni ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
void ft_putstr(char *str)
|
||||
{
|
||||
char *p_str;
|
||||
|
||||
p_str = str;
|
||||
while (*p_str != '\0')
|
||||
write(1, p_str++, 1);
|
||||
}
|
||||
28
C_09/git_old2/ex00/ft_strcmp.c
Normal file
28
C_09/git_old2/ex00/ft_strcmp.c
Normal file
@@ -0,0 +1,28 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_strcmp.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: gbaconni <gbaconni@42lausanne.ch> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2021/08/22 14:43:35 by gbaconni #+# #+# */
|
||||
/* Updated: 2021/08/22 14:43:44 by gbaconni ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
int ft_strcmp(char *s1, char *s2)
|
||||
{
|
||||
char c1;
|
||||
char c2;
|
||||
|
||||
c1 = '\0';
|
||||
c2 = '\0';
|
||||
while (c1 == c2)
|
||||
{
|
||||
c1 = *s1++;
|
||||
c2 = *s2++;
|
||||
if (c1 == '\0')
|
||||
break ;
|
||||
}
|
||||
return (c1 - c2);
|
||||
}
|
||||
21
C_09/git_old2/ex00/ft_strlen.c
Normal file
21
C_09/git_old2/ex00/ft_strlen.c
Normal file
@@ -0,0 +1,21 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_strlen.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: gbaconni <gbaconni@42lausanne.ch> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2021/08/22 14:42:47 by gbaconni #+# #+# */
|
||||
/* Updated: 2021/08/22 14:43:21 by gbaconni ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
int ft_strlen(char *str)
|
||||
{
|
||||
char *p_str;
|
||||
|
||||
p_str = str;
|
||||
while (*p_str != '\0')
|
||||
p_str++;
|
||||
return (p_str - str);
|
||||
}
|
||||
20
C_09/git_old2/ex00/ft_swap.c
Normal file
20
C_09/git_old2/ex00/ft_swap.c
Normal file
@@ -0,0 +1,20 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_swap.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: gbaconni <gbaconni@42lausanne.ch> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2021/08/22 14:41:30 by gbaconni #+# #+# */
|
||||
/* Updated: 2021/08/22 14:41:35 by gbaconni ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
void ft_swap(int *a, int *b)
|
||||
{
|
||||
int n;
|
||||
|
||||
n = *a;
|
||||
*a = *b;
|
||||
*b = n;
|
||||
}
|
||||
6
C_09/git_old2/ex00/libft_creator.sh
Executable file
6
C_09/git_old2/ex00/libft_creator.sh
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
rm -f *.o libft.a
|
||||
gcc -Wall -Wextra -Werror -c *.c
|
||||
ar -cq libft.a *.o
|
||||
#ar -t libft.a
|
||||
#rm -f *.o
|
||||
46
C_09/git_old2/ex00/main.c
Normal file
46
C_09/git_old2/ex00/main.c
Normal file
@@ -0,0 +1,46 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* main.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: gbaconni <gbaconni@42lausanne.ch> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2021/08/22 14:55:33 by gbaconni #+# #+# */
|
||||
/* Updated: 2021/08/22 17:19:48 by gbaconni ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.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);
|
||||
|
||||
int main(void)
|
||||
{
|
||||
int a;
|
||||
int b;
|
||||
int r;
|
||||
|
||||
printf("ft_putchar: (expected Z)\n");
|
||||
ft_putchar('Z');
|
||||
printf("\n\n");
|
||||
a = 42;
|
||||
b = 21;
|
||||
printf("ft_swap: (expected a=21 b=42)\n");
|
||||
ft_swap(&a, &b);
|
||||
printf("a=%d b=%d\n\n", a, b);
|
||||
printf("ft_putstr: (expected hello)\n");
|
||||
ft_putstr("hello\n\n");
|
||||
printf("ft_strlen: (expected 5)\n");
|
||||
r = ft_strlen("hello");
|
||||
printf("%d\n\n", r);
|
||||
printf("ft_strcmp: (expected 0)\n");
|
||||
r = ft_strcmp("abc","abc");
|
||||
printf("%d\n\n", r);
|
||||
}
|
||||
14
C_09/git_old2/ex00/main.sh
Executable file
14
C_09/git_old2/ex00/main.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
find . -type f -name '*.h' -exec \
|
||||
norminette -R CheckDefine {} \;
|
||||
find . -type f -name '*.c' \! -name 'main.c' -exec \
|
||||
norminette -R CheckForbiddenSourceHeader {} \;
|
||||
echo
|
||||
sh libft_creator.sh
|
||||
rm -f *.o
|
||||
echo
|
||||
echo $(basename $PWD):
|
||||
gcc -Wall -Wextra -Werror -o a.out -L. -lft main.c
|
||||
./a.out "$@"
|
||||
rm -f a.out
|
||||
Reference in New Issue
Block a user