mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-09 20:57:32 +08:00
13 lines
277 B
C++
13 lines
277 B
C++
// Prototypes for functions for executing builtin_complete functions.
|
|
#ifndef FISH_BUILTIN_COMPLETE_H
|
|
#define FISH_BUILTIN_COMPLETE_H
|
|
|
|
#include <cwchar>
|
|
|
|
#include <cstring>
|
|
|
|
class parser_t;
|
|
|
|
int builtin_complete(parser_t &parser, io_streams_t &streams, wchar_t **argv);
|
|
#endif
|