Codebase list fish / HEAD src / builtin_complete.h
HEAD

Tree @HEAD (Download .tar.gz)

builtin_complete.h @HEADraw · history · blame

// Prototypes for functions for executing builtin_complete functions.
#ifndef FISH_BUILTIN_COMPLETE_H
#define FISH_BUILTIN_COMPLETE_H

#include <cstring>
#include <cwchar>

class parser_t;

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