blob: 407cae7eda5bd5800887d45f233bfa346841ab91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _MAIN_COMPLETION_PATH_H
#define _MAIN_COMPLETION_PATH_H
#include "main/completion.h"
/**
* Create a new path completion provider.
*
* This provider completes filesystem paths.
* @returns A filesystem path @ref completion_provider.
*/
struct completion_provider create_path_provider(void (*on_complete_path)(void));
#endif
|