*Defined in /sys/cmdparse.h

/*
 * CMDPARSE_ITEMLIST
 *
 * Parses a string on the form:
 *
 *    <prep> <item> <prep> <item> <prep> <item> ....
 *
 * item can be a subitem, sublocation or a normal object.
 *
 * Returns an array with four elements:
 *
 *
 * ret[0]                The prepositions
 * ret[1]                The items, a normal parse_command %i return value
 * ret[2]                True if last was not a normal object
 * ret[3]                True if no normal objects
 *
 */
#define CMDPARSE_ITEMLIST(str) call_other(CMDPARSE_STD, "parse_itemlist", str)

