aboutsummaryrefslogtreecommitdiffhomepage
path: root/common.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-10 01:37:30 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-10 01:37:30 -0800
commitd975187433ed71120d603ab2815d11b9c80ae8be (patch)
tree790a1644dfb643b06bdd9b04d009bf5023141c33 /common.h
parent910863e9ea5e1a4db192b5be1630d125cff18485 (diff)
Removed some al_list functions
Diffstat (limited to 'common.h')
-rw-r--r--common.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/common.h b/common.h
index 50d033a0..970f8acd 100644
--- a/common.h
+++ b/common.h
@@ -188,12 +188,6 @@ extern const wchar_t *program_name;
*/
void show_stackframe();
-/**
- Take an array_list_t containing wide strings and converts them to a
- single null-terminated wchar_t **. The array is allocated using
- malloc, and needs to be fred's by the caller.
-*/
-wchar_t **list_to_char_arr( array_list_t *l );
wcstring_list_t completions_to_wcstring_list( const std::vector<completion_t> &completions );
@@ -210,12 +204,6 @@ wcstring_list_t completions_to_wcstring_list( const std::vector<completion_t> &c
*/
int fgetws2( wchar_t **buff, int *len, FILE *f );
-/**
- Sorts an array_list of wide strings according to the
- wcsfilecmp-function from the util library
-*/
-void sort_list( array_list_t *comp );
-
void sort_strings( std::vector<wcstring> &strings);
void sort_completions( std::vector<completion_t> &strings);
@@ -566,8 +554,7 @@ void write_screen( const wchar_t *msg, string_buffer_t *buff );
\param val the input string. The contents of this string is not changed.
\param out the list in which to place the elements.
*/
-void tokenize_variable_array( const wchar_t *val, array_list_t *out );
-void tokenize_variable_array2( const wcstring &val, wcstring_list_t &out);
+void tokenize_variable_array( const wcstring &val, wcstring_list_t &out);
/**
Make sure the specified direcotry exists. If needed, try to create