aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/builtin_string.h
blob: 49247d9c12fd0e6d116ea57ced43fa20a7bbc4f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Prototypes for functions for executing builtin_string functions.
#ifndef FISH_BUILTIN_STRING_H
#define FISH_BUILTIN_STRING_H

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

class parser_t;

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