mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 10:28:09 +01:00
20 lines
289 B
C
20 lines
289 B
C
|
/*
|
||
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
*/
|
||
|
|
||
|
#ifndef NOTMUCH_UTIL_PATH_UTIL_H_
|
||
|
#define NOTMUCH_UTIL_PATH_UTIL_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
char *
|
||
|
notmuch_canonicalize_file_name (const char *path);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* NOTMUCH_UTIL_PATH_UTIL_H_ */
|