OCRudoku  v1.0
Resolve word grid with ease
Loading...
Searching...
No Matches
ApplicationUtils.h
Go to the documentation of this file.
1#ifndef APLLICATION_UTILS_H
2#define APLLICATION_UTILS_H
3
4char* path_get_directory(char* path);
5
6char* combine_path(const char* first_path, const char* second_path);
7
8void mkpath(const char* file_path);
9
10#endif
char * combine_path(const char *first_path, const char *second_path)
Combines two file paths into a single path.
Definition ApplicationUtils.c:46
void mkpath(const char *file_path)
Creates a directory path.
Definition ApplicationUtils.c:92
char * path_get_directory(char *path)
Extracts the directory part of a given file path.
Definition ApplicationUtils.c:6
char path[MAX_PATH_LEN]
Definition main_menu.c:32