mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-01 21:21:15 -03:00
Added a seq function that defers to the seq command if present
https://github.com/fish-shell/fish-shell/issues/137
This commit is contained in:
@@ -293,6 +293,11 @@ char *wcs2str(const wchar_t *in)
|
||||
return wcs2str_internal(in, out);
|
||||
}
|
||||
|
||||
char *wcs2str(const wcstring &in)
|
||||
{
|
||||
return wcs2str(in.c_str());
|
||||
}
|
||||
|
||||
/* This function is distinguished from wcs2str_internal in that it allows embedded null bytes */
|
||||
std::string wcs2string(const wcstring &input)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user