summaryrefslogtreecommitdiff
path: root/unix/draw.c
blob: 1037b4eb45f7035324ee09d4c6897cf9aa258521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <ncurses.h>
#include <stdlib.h>
#include <string.h>

#include "../include/draw.h"
#include "../include/draw_extend.h"

void launch(){
	char full_command[BUF_LEN];

	strcpy(full_command, get_launch());
	strcat(full_command, " > /dev/null 2>&1 &");
	system(full_command);

	return;
}