fix compile issues with duplicate function defs

This commit is contained in:
Khaïs COLIN 2025-03-21 13:50:28 +01:00
parent 00f27ae05c
commit 0d4edd4809
Signed by: logistic-bot
SSH key fingerprint: SHA256:RlpiqKeXpcPFZZ4y9Ou4xi2M8OhRJovIwDlbCaMsuAo
2 changed files with 3 additions and 5 deletions

View file

@ -50,7 +50,6 @@ srcs = \
src/parser/wordlist/wordlist_copy.c \
src/parser/wordlist/wordlist_debug.c \
src/parser/wordlist/wordlist_idx.c \
src/parser/wordlist/wordlist_debug.c \
src/parser/wordlist/wordlist_quicksort.c \
src/parser/wordlist/wordlist_utils.c \
src/parser/wordsplit/rule_utils.c \

View file

@ -3,10 +3,10 @@
/* ::: :::::::: */
/* wordlist.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jguelen <jguelen@student.42.fr> +#+ +:+ +#+ */
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/03/20 14:54:55 by khais #+# #+# */
/* Updated: 2025/03/21 10:43:12 by jguelen ### ########.fr */
/* Created: 2025/03/21 13:48/52 by khais #+# #+# */
/* Updated: 2025/03/21 13:48:52 by khais ### ########.fr */
/* */
/* ************************************************************************** */
@ -47,6 +47,5 @@ t_worddesc *wordlist_pop_idx(t_wordlist **wordlist, int idx);
int wordlist_size(t_wordlist *wordlist);
t_wordlist *wordlist_last(t_wordlist *list);
t_wordlist *wordlist_get_elem(t_wordlist *list, int idx);
void wordlist_debug(t_wordlist *wordlist);
#endif