mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-01 07:38:46 +00:00
c2970f9618
This runs build_tools/style.fish, which runs clang-format on C++, fish_indent on fish and (new) black on python. If anything is wrong with the formatting, we should fix the tools, but automated formatting is worth it.
11 lines
288 B
C++
11 lines
288 B
C++
// Prototypes for functions for executing builtin_commandline functions.
|
|
#ifndef FISH_BUILTIN_COMMANDLINE_H
|
|
#define FISH_BUILTIN_COMMANDLINE_H
|
|
|
|
#include <cstring>
|
|
#include <cwchar>
|
|
|
|
class parser_t;
|
|
|
|
int builtin_commandline(parser_t &parser, io_streams_t &streams, wchar_t **argv);
|
|
#endif
|