N64FlashcartMenu
Loading...
Searching...
No Matches
path.h
Go to the documentation of this file.
1
7#ifndef PATH_H__
8#define PATH_H__
9
10#include <stdbool.h>
11#include <stdlib.h>
12
16typedef struct {
17 char *buffer;
18 char *root;
19 size_t capacity;
20} path_t;
21
28path_t *path_create(const char *string);
29
37path_t *path_init(const char *prefix, char *string);
38
44void path_free(path_t *path);
45
52path_t *path_clone(path_t *string);
53
61path_t *path_clone_push(path_t *path, char *string);
62
69char *path_get(path_t *path);
70
77char *path_last_get(path_t *path);
78
86bool path_is_root(path_t *path);
87
93void path_pop(path_t *path);
94
101void path_push(path_t *path, char *string);
102
109void path_push_subdir(path_t *path, char *string);
110
117char *path_ext_get(path_t *path);
118
124void path_ext_remove(path_t *path);
125
132void path_ext_replace(path_t *path, char *ext);
133
141bool path_has_value(path_t *path);
142
151bool path_are_match(path_t *left, path_t *right);
152
153#endif // PATH_H__
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