mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-23 11:28:13 +01:00
126347b694
[dgit import orig notmuch_0.38.2.orig.tar.xz]
11 lines
299 B
C
11 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;
|
|
}
|