From 0b3c966eaa8d0c9015bb626acf34f0179c9b4c0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= Date: Fri, 6 Sep 2024 15:28:55 +0200 Subject: [PATCH] normed: corrected the norm of the stdme --- allocator/Filelist.aq.mk | 4 ++-- ast/Filelist.ast.mk | 8 ++++---- exec/Filelist.exec.mk | 8 ++++---- line/Filelist.line.mk | 4 ++-- stdme/Filelist.me.mk | 10 +++++----- stdme/output/src/vec/str/str_sort.c | 15 +++++++-------- stdme/src/os/process_redirection.c | 10 +--------- 7 files changed, 25 insertions(+), 34 deletions(-) diff --git a/allocator/Filelist.aq.mk b/allocator/Filelist.aq.mk index ead60e1c..63698d77 100644 --- a/allocator/Filelist.aq.mk +++ b/allocator/Filelist.aq.mk @@ -9,11 +9,11 @@ me_alloc/merge_blocks \ me_alloc/pages \ me_alloc/realloc \ vg/dummy_block \ -vg/dummy_mem_status \ vg/dummy_mempool \ vg/dummy_mempool_bis \ +vg/dummy_mem_status \ vg/valgrind_block \ -vg/valgrind_mem_status \ vg/valgrind_mempool \ vg/valgrind_mempool_bis \ +vg/valgrind_mem_status \ diff --git a/ast/Filelist.ast.mk b/ast/Filelist.ast.mk index 95cebdf0..61fff42a 100644 --- a/ast/Filelist.ast.mk +++ b/ast/Filelist.ast.mk @@ -1,8 +1,4 @@ SRC_FILES = \ -_here_doc_not_done \ -_not_done_boucle_print \ -_not_done_function \ -_not_done_scripting_print \ ast_alloc/ast_alloc \ ast_alloc/ast_alloc_scripting \ ast_free/ast_free \ @@ -21,6 +17,10 @@ from_node/node_utils2 \ from_node/redirect_node \ from_node/scripting_node \ from_node/string_node \ +_here_doc \ +_not_done_boucle_print \ +_not_done_function \ +_not_done_scripting_print \ print_ast/ast_print \ print_ast/ast_print_arithmetic \ print_ast/ast_print_command \ diff --git a/exec/Filelist.exec.mk b/exec/Filelist.exec.mk index 5fd1c36b..34392b10 100644 --- a/exec/Filelist.exec.mk +++ b/exec/Filelist.exec.mk @@ -1,17 +1,17 @@ SRC_FILES = \ -builtins/_debug \ builtins/cd \ +builtins/_debug \ builtins/echo \ builtins/env \ builtins/exit \ builtins/export \ builtins/pwd \ builtins/unset \ -run_arithmetic/_get_op \ -run_arithmetic/_run_arith \ -run_arithmetic/_to_ast_node \ run_arithmetic/arithmetic \ run_arithmetic/arithmetic_operation \ +run_arithmetic/_get_op \ run_arithmetic/operator_bis \ +run_arithmetic/_run_arith \ +run_arithmetic/_to_ast_node \ run_ast \ diff --git a/line/Filelist.line.mk b/line/Filelist.line.mk index 4d84cc2e..2c93bfb5 100644 --- a/line/Filelist.line.mk +++ b/line/Filelist.line.mk @@ -2,11 +2,11 @@ SRC_FILES = \ line \ line_edit_actions \ line_edit_actions2 \ +line_editing \ +line_editing2 \ line_edit_mode \ line_edit_mode_interal \ line_edit_mode_specific_key \ -line_editing \ -line_editing2 \ line_globals \ line_history \ line_internals \ diff --git a/stdme/Filelist.me.mk b/stdme/Filelist.me.mk index 03b7c42f..7f234e90 100644 --- a/stdme/Filelist.me.mk +++ b/stdme/Filelist.me.mk @@ -35,10 +35,10 @@ fs/fs_internal \ fs/getters \ fs/putfd \ gnl/get_next_line \ +hash/hasher \ hash/hash_signed \ hash/hash_str \ hash/hash_unsigned \ -hash/hasher \ hash/sip/sip13 \ hash/sip/sip_utils \ hash/sip/sip_utils2 \ @@ -86,6 +86,10 @@ printf/printf \ printf/printf_fd \ printf/printf_str \ printf/vprintf \ +string/mod \ +string/string_insert \ +string/string_remove \ +string/string_reserve \ str/str_clone \ str/str_compare \ str/str_find_chr \ @@ -102,10 +106,6 @@ str/str_n_find_str \ str/str_split \ str/str_substring \ str/str_trim \ -string/mod \ -string/string_insert \ -string/string_remove \ -string/string_reserve \ GEN_FILES = \ convert/i16_to_str \ diff --git a/stdme/output/src/vec/str/str_sort.c b/stdme/output/src/vec/str/str_sort.c index a37015ad..f5f43c51 100644 --- a/stdme/output/src/vec/str/str_sort.c +++ b/stdme/output/src/vec/str/str_sort.c @@ -1,27 +1,26 @@ /* ************************************************************************** */ /* */ /* ::: :::::::: */ -/* best_move.c :+: :+: :+: */ +/* str_sort.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: maiboyer +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/01/29 20:04:33 by maiboyer #+# #+# */ -/* Updated: 2024/01/31 14:25:00 by maiboyer ### ########.fr */ +/* Updated: 2024/09/06 15:26:05 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #include "me/types.h" #include "me/vec/vec_str.h" -void vec_str_sort(t_vec_str *v, - t_vec_str_sort_fn is_sorted_fn) +void vec_str_sort(t_vec_str *v, t_vec_str_sort_fn is_sorted_fn) { - t_usize sorted_part; - t_usize i; - t_str tmp; + t_usize sorted_part; + t_usize i; + t_str tmp; if (v == NULL) - return; + return ; sorted_part = v->len; while (sorted_part > 0) { diff --git a/stdme/src/os/process_redirection.c b/stdme/src/os/process_redirection.c index 6e9505e3..677845bc 100644 --- a/stdme/src/os/process_redirection.c +++ b/stdme/src/os/process_redirection.c @@ -6,7 +6,7 @@ /* By: maiboyer +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/01/04 22:27:00 by maiboyer #+# #+# */ -/* Updated: 2024/08/02 19:10:51 by maiboyer ### ########.fr */ +/* Updated: 2024/09/06 15:28:26 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -37,28 +37,20 @@ t_error _handle_redirections_inherited(t_spawn_info *info, t_process *process) t_error _handle_redirections_fds(t_spawn_info *info, t_process *process) { - // t_fd *tmp; - if (info->stdin.tag == R_FD) { - // tmp = info->stdin.fd.fd; info->stdin = fd(dup_fd(info->stdin.fd.fd)); process->stdin = dup_fd(info->stdin.fd.fd); - // close_fd(tmp); } if (info->stdout.tag == R_FD) { - // tmp = info->stdin.fd.fd; info->stdout = fd(dup_fd(info->stdout.fd.fd)); process->stdout = dup_fd(info->stdout.fd.fd); - // close_fd(tmp); } if (info->stderr.tag == R_FD) { - // tmp = info->stdin.fd.fd; info->stderr = fd(dup_fd(info->stderr.fd.fd)); process->stderr = dup_fd(info->stderr.fd.fd); - // close_fd(tmp); } return (NO_ERROR); }