bool path_has_value(path_t *path)
Check if the path has a value.
Definition path.c:249
void path_push_subdir(path_t *path, char *string)
Push a subdirectory onto the path.
Definition path.c:194
void path_push(path_t *path, char *string)
Push a string onto the path.
Definition path.c:178
path_t * path_clone_push(path_t *path, char *string)
Clone a path object and push a string onto it.
Definition path.c:118
void path_pop(path_t *path)
Pop the last component from the path.
Definition path.c:160
char * buffer
Definition path.h:17
char * path_get(path_t *path)
Get the string representation of a path.
Definition path.c:130
void path_ext_remove(path_t *path)
Remove the file extension from the path.
Definition path.c:223
path_t * path_clone(path_t *string)
Clone a path object.
Definition path.c:105
char * root
Definition path.h:18
size_t capacity
Definition path.h:19
void path_free(path_t *path)
Free a path object.
Definition path.c:92
char * path_ext_get(path_t *path)
Get the file extension from the path.
Definition path.c:209
bool path_is_root(path_t *path)
Check if the path is the root directory.
Definition path.c:151
void path_ext_replace(path_t *path, char *ext)
Replace the file extension of the path.
Definition path.c:237
path_t * path_init(const char *prefix, char *string)
Initialize a path object with a prefix and string.
Definition path.c:74
bool path_are_match(path_t *left, path_t *right)
Check if two paths match.
Definition path.c:265
char * path_last_get(path_t *path)
Get the last component of a path.
Definition path.c:140
path_t * path_create(const char *string)
Create a new path object.
Definition path.c:38
Path Structure.
Definition path.h:16