Codebase list fish / HEAD src / builtin_type.h
HEAD

Tree @HEAD (Download .tar.gz)

builtin_type.h @HEADraw · history · blame

// Prototypes for executing builtin_type function.
#ifndef FISH_BUILTIN_TYPE_H
#define FISH_BUILTIN_TYPE_H

#include "maybe.h"

class parser_t;
struct io_streams_t;

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