mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-23 11:28:13 +01:00
126347b694
[dgit import orig notmuch_0.38.2.orig.tar.xz]
19 lines
289 B
C
19 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_ */
|