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:
ridiculousfish
2013-01-12 14:18:34 -08:00
parent 373cca0bf6
commit dc37a8079e
6 changed files with 90 additions and 55 deletions

View File

@@ -226,6 +226,7 @@ wcstring str2wcstring(const std::string &in);
way using the private use area.
*/
char *wcs2str(const wchar_t *in);
char *wcs2str(const wcstring &in);
std::string wcs2string(const wcstring &input);
/** Test if a string prefixes another. Returns true if a is a prefix of b */