diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-03-06 21:55:17 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-13 17:18:43 -0300 |
commit | 6fd9f090fc66c3ba38dc07ea6c982c3124735f32 (patch) | |
tree | 052b7d267c182c9975fb2b3e837cef66b0a166b4 /src/os/os.h | |
parent | f6ace9962d95eb12236083871154c1501f02c556 (diff) | |
download | rneovim-6fd9f090fc66c3ba38dc07ea6c982c3124735f32.tar.gz rneovim-6fd9f090fc66c3ba38dc07ea6c982c3124735f32.tar.bz2 rneovim-6fd9f090fc66c3ba38dc07ea6c982c3124735f32.zip |
refactored logic from init_users() into mch_get_usernames()
Diffstat (limited to 'src/os/os.h')
-rw-r--r-- | src/os/os.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/os/os.h b/src/os/os.h index 48e3ffd0dd..87323fb025 100644 --- a/src/os/os.h +++ b/src/os/os.h @@ -13,5 +13,6 @@ int mch_can_exe(const char_u *name); const char *mch_getenv(const char *name); int mch_setenv(const char *name, const char *value, int overwrite); char *mch_getenvname_at_index(size_t index); +int mch_get_usernames(garray_T *usernames); #endif |