xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit e5a0be7630bf9fe17efa8340b04665e8e2e792a0

Remove unused free_wstring_array() function
Author: xaizek
Author date (UTC): 2016-07-15 17:46
Committer name: xaizek
Committer date (UTC): 2016-07-15 17:46
Parent(s): 17837e78d0781b310f635d6ab8c3486b265068a5
Signing key: 99DC5E4DB05F6BE2
Tree: 7df60c8f99c1404e91060fd2b4a346c571d4a2f2
File Lines added Lines deleted
src/utils/string_array.c 0 6
src/utils/string_array.h 0 2
File src/utils/string_array.c changed (mode: 100644) (index b39ba4189..b031d1bf4)
... ... free_strings(char *array[], size_t len)
174 174 } }
175 175 } }
176 176
177 void
178 free_wstring_array(wchar_t **array, size_t len)
179 {
180 free_string_array((char **)array, len);
181 }
182
183 177 char ** char **
184 178 read_file_of_lines(const char filepath[], int *nlines) read_file_of_lines(const char filepath[], int *nlines)
185 179 { {
File src/utils/string_array.h changed (mode: 100644) (index d4003c28c..fe5d69c2f)
... ... void free_string_array(char *array[], size_t len);
70 70 /* Frees memory of all array items, but not from the array itself. */ /* Frees memory of all array items, but not from the array itself. */
71 71 void free_strings(char *array[], size_t len); void free_strings(char *array[], size_t len);
72 72
73 void free_wstring_array(wchar_t **array, size_t len);
74
75 73 /* Reads file specified by filepath into an array of strings. Returns non-NULL /* Reads file specified by filepath into an array of strings. Returns non-NULL
76 74 * on success, otherwise NULL is returned, *nlines is untouched and errno * on success, otherwise NULL is returned, *nlines is untouched and errno
77 75 * contains error code. For empty file non-NULL will be returned, but *nlines * contains error code. For empty file non-NULL will be returned, but *nlines
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master