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

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

class parser_t;

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