4coder/4ed_search_list.h

24 lines
266 B
C
Raw Normal View History

/*
* Mr. 4th Dimention - Allen Webster
*
* 01.10.2019
*
* Search list helper.
*
*/
// TOP
#if !defined(FRED_SEARCH_LIST_H)
#define FRED_SEARCH_LIST_H
struct Path_Search_List{
List_String_Const_u8 list;
u64 max_member_length;
};
#endif
// BOTTOM