2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-02-21 00:19:06 +00:00
fish-shell/src/builtin_string.h

11 lines
277 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;
maybe_t<int> builtin_string(parser_t &parser, io_streams_t &streams, wchar_t **argv);
#endif