fish-shell/src/builtin_string.h
2019-03-12 15:09:36 -07:00

12 lines
269 B
C++

// Prototypes for functions for executing builtin_string functions.
#ifndef FISH_BUILTIN_STRING_H
#define FISH_BUILTIN_STRING_H
#include <cwchar>
#include <cstring>
class parser_t;
int builtin_string(parser_t &parser, io_streams_t &streams, wchar_t **argv);
#endif