diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2016-01-22 18:32:57 +0100 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2016-01-22 18:34:10 +0100 |
commit | 916cae8fa3a451c4fc802814cc9f118ad4fb9512 (patch) | |
tree | a47e14ae3b2e7fa263879a1d44663b72a462e871 /toolbox/dynarray.h | |
parent | Add zip and unzip when using toybox (diff) | |
download | android_bootable_recovery-916cae8fa3a451c4fc802814cc9f118ad4fb9512.tar android_bootable_recovery-916cae8fa3a451c4fc802814cc9f118ad4fb9512.tar.gz android_bootable_recovery-916cae8fa3a451c4fc802814cc9f118ad4fb9512.tar.bz2 android_bootable_recovery-916cae8fa3a451c4fc802814cc9f118ad4fb9512.tar.lz android_bootable_recovery-916cae8fa3a451c4fc802814cc9f118ad4fb9512.tar.xz android_bootable_recovery-916cae8fa3a451c4fc802814cc9f118ad4fb9512.tar.zst android_bootable_recovery-916cae8fa3a451c4fc802814cc9f118ad4fb9512.zip |
Diffstat (limited to 'toolbox/dynarray.h')
-rw-r--r-- | toolbox/dynarray.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/toolbox/dynarray.h b/toolbox/dynarray.h index f73fb3b9c..0ca54fdf6 100644 --- a/toolbox/dynarray.h +++ b/toolbox/dynarray.h @@ -1,6 +1,8 @@ #ifndef DYNARRAY_H #define DYNARRAY_H +// These functions are now found in system/core/toolbox/ls.c + #include <stddef.h> /* simple dynamic array of pointers */ @@ -77,4 +79,4 @@ void strlist_append_dup( strlist_t *list, const char *str); /* sort the strings in a given list (using strcmp) */ void strlist_sort( strlist_t *list ); -#endif /* DYNARRAY_H */
\ No newline at end of file +#endif /* DYNARRAY_H */ |