*Defined in /sys/cmdparse.h

/*
 * FIND_STR_IN_OBJECT
 *
 * Find the corresponding object array in a player or room.
 * Locates both 'second sword' as well as 'sword 2' or 'two swords'
 *
 * FIND_STR_IN_OBJECT check all_inventory() of the object
 *
 * Always returns an array with objects, or sometimes an empty array.
 */
#define FIND_STR_IN_OBJECT(str, object) \
       call_other(CMDPARSE_STD, "find_str_in_object", str, object)

