aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/parser.h b/parser.h
index 510bb6a5..d873a1fb 100644
--- a/parser.h
+++ b/parser.h
@@ -189,15 +189,6 @@ extern event_block_t *global_event_block;
extern io_data_t *block_io;
/**
- Finds the full path of an executable in a newly allocated string.
-
- \param cmd The name of the executable.
- \param context the halloc context to use for memory allocations
- \return 0 if the command can not be found, the path of the command otherwise.
-*/
-wchar_t *parser_get_filename( void *context, const wchar_t *cmd );
-
-/**
Evaluate the expressions contained in cmd.
\param cmd the string to evaluate
@@ -326,15 +317,6 @@ int parser_test( const wchar_t * buff, int *block_level, string_buffer_t *out, c
int parser_test_args( const wchar_t * buff, string_buffer_t *out, const wchar_t *prefix );
/**
- Returns the full path of the specified directory. If the \c in is a
- full path to an existing directory, a copy of the string is
- returned. If \c in is a directory relative to one of the
- directories i the CDPATH, the full path is returned. If no
- directory can be found, 0 is returned.
-*/
-wchar_t *parser_cdpath_get( void *context, wchar_t *in );
-
-/**
Tell the parser that the specified function may not be run if not
inside of a conditional block. This is to remove some possibilities
of infinite recursion.