#include #include #include "merger.h" int main(int argc, char *argv[]) { if(argc != 3){ printf("Error, Check your Command Line Arguments.\nExample: ./Cow_Merger \n"); return EXIT_SUCCESS; } char *imageFilePath = argv[1]; char *cowFilePath = argv[2]; merger(imageFilePath, cowFilePath); return EXIT_SUCCESS; }