Codebase list fish / HEAD src / builtin_string.h
HEAD

Tree @HEAD (Download .tar.gz)

builtin_string.h @HEADraw · history · blame

// 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