aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_music.c
blob: f1801f97b6155c314f7b9d23b66f59860e898769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_music.c                                         :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: rbousset <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/24 17:17:54 by rbousset          #+#    #+#             */
/*   Updated: 2020/02/24 17:17:56 by rbousset         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#include <libft.h>
#include <stddef.h>
#include <stdlib.h>
#include <unistd.h>

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);
}