mirror of
https://github.com/KeyZox71/ft_minipowershell.git
synced 2025-05-11 23:18:46 +02:00
「✨」 feat: testing readline
This commit is contained in:
48
src/main.c
Normal file
48
src/main.c
Normal file
@ -0,0 +1,48 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* main.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/04/24 11:18:04 by adjoly #+# #+# */
|
||||
/* Updated: 2024/04/25 11:30:17 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include <readline/readline.h>
|
||||
#include <stdio.h>
|
||||
#include "libft.h"
|
||||
|
||||
t_boolean is_str(char *src, char *dst)
|
||||
{
|
||||
while (*src++ == *dst++)
|
||||
;
|
||||
if (*src)
|
||||
return (FALSE);
|
||||
return (TRUE);
|
||||
}
|
||||
|
||||
int main(int ac, char **av, char **env)
|
||||
{
|
||||
char *test;
|
||||
char **lll;
|
||||
|
||||
(void)ac;
|
||||
(void)av;
|
||||
(void)env;
|
||||
while (1)
|
||||
{
|
||||
test = readline("test>");
|
||||
lll = ft_split(test, ' ');
|
||||
if (is_str(*lll, "exit") == TRUE)
|
||||
return (0);
|
||||
if (is_str(*lll, "uwu") == TRUE)
|
||||
{
|
||||
printf("go burn in hell\n");
|
||||
return (0);
|
||||
}
|
||||
printf("%s\n", test);
|
||||
}
|
||||
return (0);
|
||||
}
|
Reference in New Issue
Block a user