#ifndef SLAVE_H
#define SLAVE_H

#define _POSIX_C_SOURCE 200112L

#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/stat.h>
#include "error.h"

#define MAX_SIZE 300
#define COMMAND_MAX_SIZE 400

void runCommand(char *, char *);
void printOutput(char *, char *);
char checkFile(char *);

#endif