blob: 3050f441e753520bc8de2c3db9bda882d364df48 (
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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 <cub3d.h>
#include <stdlib.h>
void
ft_music(t_cub *cl)
{
/* char *cmd; */
/* uint8_t len; */
(void)cl;
/* if (FT_OS == 2) */
/* ft_sprintf(cmd, "aplay -f cd -t wav %s", cl->mlist->music_path); */
/* else {} */
/* system(cmd); */
}
|