aboutsummaryrefslogtreecommitdiffhomepage
path: root/expand.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-07-16 12:05:36 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-07-16 12:06:02 -0700
commit33c64108093304d25db88bc8f4bb6df6078c521d (patch)
tree2dd312113d4f450733f3c37ecb087e4889c2720b /expand.h
parent548ea1e54aa17590a573ec5a976ee0413345d360 (diff)
Implemented process expansion on OS X
Also fixed issue where process expansion would always fail for processes with spaces Fixes https://github.com/fish-shell/fish-shell/issues/56
Diffstat (limited to 'expand.h')
-rw-r--r--expand.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/expand.h b/expand.h
index 99993ce6..1181570c 100644
--- a/expand.h
+++ b/expand.h
@@ -192,5 +192,9 @@ int expand_is_clean( const wchar_t *in );
*/
void expand_variable_error( parser_t &parser, const wchar_t *token, int token_pos, int error_pos );
+/**
+ Testing function for getting all process names.
+*/
+std::vector<wcstring> expand_get_all_process_names(void);
#endif