#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
#include <direct.h>
#include <windows.h>
#define PATH_SEPARATOR "\\"
#else
#include <unistd.h>
#include <sys/stat.h>
#define PATH_SEPARATOR "/"
#endif
#define PATH_MAX_LEN 1024
char* get_current_path();
int is_directory(const char* path);
int folder_exists_in_current(const char* folder_name);