fish-shell/src/builtin_string.h
ridiculousfish 82eca4bc86 Run clang-format on all files
The main change here is to reorder headers.
2019-10-13 15:50:48 -07:00

11 lines
268 B
C++

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