C programming

profileWernerrab
header.txt

#ifndef HEADER_H #define HEADER_H #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <fcntl.h> #include <sys/wait.h> #include <sys/types.h> #include <sys/file.h> void StoreInputToChar2DArray(char str[], char args[][100], char seperator); // Seperate the commands seperated by a semicolon void StoreInputToChar2DArray2(char str[], char args[][100], char seperator); // Converts each command into a 2d array void ClearCharArrays(char args[][100], char* args2[], char str[], int strSize); // Clear character arrays for next user input #endif