view src/lib/abspath.h @ 22955:812e5c961328

fts: Indexing virtual mailbox didn't always index the last mails
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Thu, 03 May 2018 18:33:00 +0300
parents f483bbface26
children
line wrap: on
line source

#ifndef ABSPATH_H
#define ABSPATH_H

/* Returns path as absolute path. If it's not already absolute path,
   it's assumed to be relative to current working directory. */
const char *t_abspath(const char *path);
/* Like t_abspath(), but path is relative to given root. */
const char *t_abspath_to(const char *path, const char *root);

/* Returns current directory, allocated from data stack. */
int t_get_current_dir(const char **dir_r);
/* Returns symlink destination, allocated from data stack. */
int t_readlink(const char *path, const char **dest_r);

/* Update binpath to be absolute:
   a) begins with '/' -> no change
   b) contains '/' -> assume relative to working directory
   c) set to first executable that's found from $PATH

   If no usable binary was found, return FALSE. */
bool t_binary_abspath(const char **binpath);

#endif