]> granicus.if.org Git - neomutt/commit
add slist type
authorRichard Russon <rich@flatcap.org>
Sun, 9 Jun 2019 15:23:55 +0000 (16:23 +0100)
committerRichard Russon <rich@flatcap.org>
Wed, 12 Jun 2019 23:23:35 +0000 (00:23 +0100)
commitf51399ebccfb9c8a42d89ea3807ae41ed19f30d1
tree7c64a518b7b0be7833596ad91126f43a7a391f95
parent44216870094867e58dd3b52f87f9767ffe4076e3
add slist type

Add a string list type.  This manages strings delimited by space, comma
or colon.  The NeoMutt code doesn't need to parse the string any more,
it's simply presented with a STAILQ (list) of strings.
14 files changed:
Makefile.autosetup
config/lib.h
config/slist.c [new file with mode: 0644]
config/slist.h [new file with mode: 0644]
config/types.h
init.c
mutt/mutt.h
mutt/slist.c [new file with mode: 0644]
mutt/slist.h [new file with mode: 0644]
po/POTFILES.in
test/Makefile.autosetup
test/config/slist.c [new file with mode: 0644]
test/config/slist.h [new file with mode: 0644]
test/main.c