NeoMutt  2024-04-25-91-gb0e085
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
path.h
Go to the documentation of this file.
1
24#ifndef MUTT_MUTT_PATH_H
25#define MUTT_MUTT_PATH_H
26
27#include <stdbool.h>
28#include <stdio.h>
29
30struct Buffer;
31
32bool mutt_path_abbr_folder(struct Buffer *path, const char *folder);
33const char *mutt_path_basename(const char *path);
34bool mutt_path_canon(struct Buffer *path, const char *homedir, bool is_dir);
35char * mutt_path_dirname(const char *path);
36char * mutt_path_escape(const char *src);
37const char *mutt_path_getcwd(struct Buffer *cwd);
38size_t mutt_path_realpath(struct Buffer *path);
39bool mutt_path_tidy(struct Buffer *path, bool is_dir);
40bool mutt_path_tidy_dotdot(char *buf);
41bool mutt_path_tidy_slash(char *buf, bool is_dir);
42bool mutt_path_tilde(struct Buffer *path, const char *homedir);
43bool mutt_path_to_absolute(char *path, const char *reference);
44
45#endif /* MUTT_MUTT_PATH_H */
bool mutt_path_tidy_dotdot(char *buf)
Remove dot-dot-slash from a path.
Definition: path.c:109
const char * mutt_path_basename(const char *path)
Find the last component for a pathname.
Definition: path.c:282
bool mutt_path_tidy(struct Buffer *path, bool is_dir)
Remove unnecessary parts of a path.
Definition: path.c:169
bool mutt_path_to_absolute(char *path, const char *reference)
Convert relative filepath to an absolute path.
Definition: path.c:333
bool mutt_path_canon(struct Buffer *path, const char *homedir, bool is_dir)
Create the canonical version of a path.
Definition: path.c:248
char * mutt_path_escape(const char *src)
Escapes single quotes in a path for a command string.
Definition: path.c:426
char * mutt_path_dirname(const char *path)
Return a path up to, but not including, the final '/'.
Definition: path.c:312
bool mutt_path_tidy_slash(char *buf, bool is_dir)
Remove unnecessary slashes and dots.
Definition: path.c:58
bool mutt_path_abbr_folder(struct Buffer *path, const char *folder)
Create a folder abbreviation.
Definition: path.c:392
size_t mutt_path_realpath(struct Buffer *path)
Resolve path, unraveling symlinks.
Definition: path.c:370
bool mutt_path_tilde(struct Buffer *path, const char *homedir)
Expand '~' in a path.
Definition: path.c:194
const char * mutt_path_getcwd(struct Buffer *cwd)
Get the current working directory.
Definition: path.c:469
String manipulation buffer.
Definition: buffer.h:36