ldmud/mudlib/deprecated/member_array.c
Alexander Motzkau 6d5702f019 Added a few sefun implementations of LDMud 3.2 efuns
Simul-efun implementations of deprecated efuns from the
mud Seifenblase by Myonara@UNItopia and Gnomi@UNItopia.
2025-03-21 21:30:30 +01:00

12 lines
283 B
C

/* This sefun is to provide a replacement for the efun member_array().
* Feel free to add it to your mudlibs, if you have much code relying on that.
*/
#if ! __EFUN_DEFINED__(member_array)
int member_array(mixed item, string|mixed* arr)
{
return member(arr, item);
}
#endif