Codebase list fish / HEAD src / builtin_set_color.h
HEAD

Tree @HEAD (Download .tar.gz)

builtin_set_color.h @HEADraw · history · blame

// Prototypes for functions for executing builtin_set_color functions.
#ifndef FISH_BUILTIN_SET_COLOR_H
#define FISH_BUILTIN_SET_COLOR_H

#include <cstring>
#include <cwchar>

class parser_t;

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