/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_music.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/24 17:17:54 by rbousset #+# #+# */ /* Updated: 2020/02/24 17:17:56 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include #include #include void ft_music_fork(char **mcmd_words) { /* execve(2) here */ char *arg[4]; arg[0] = "/bin/sh"; arg[1] = "-c"; arg[2] = "aplay ./media/sound/DEVANT-LES-KAISSONS.wav"; arg[3] = NULL; (void)mcmd_words; execve("/bin/sh", &arg[0], NULL); }