mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-23 19:38:07 +01:00
12 lines
299 B
C
12 lines
299 B
C
|
#include "defs.h"
|
||
|
|
||
|
VALUE
|
||
|
notmuch_rb_filenames_get (notmuch_filenames_t *fnames)
|
||
|
{
|
||
|
VALUE rb_array = rb_ary_new ();
|
||
|
|
||
|
for (; notmuch_filenames_valid (fnames); notmuch_filenames_move_to_next (fnames))
|
||
|
rb_ary_push (rb_array, rb_str_new2 (notmuch_filenames_get (fnames)));
|
||
|
return rb_array;
|
||
|
}
|