aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/builtin_complete.h
blob: 3ef45a32de55844ed17fcca582f4f211c4c53ee7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Prototypes for functions for executing builtin_complete functions.
#ifndef FISH_BUILTIN_COMPLETE_H
#define FISH_BUILTIN_COMPLETE_H

#include <wchar.h>
#include <cstring>

class parser_t;

int builtin_complete(parser_t &parser, io_streams_t &streams, wchar_t **argv);
#endif