I need a special include file (in essence a very log list of names) included in the middle of my code (and I cannot make a list a part of any structure). It works but it looks ugly:
<code>;
#include <big_list.inc>
<more-code>;
Is it possible to define some macro to include this file, I feel that this would look better.
#define BIG_LIST_INC() ...
<code>;
BIT_LIST_INC();
<more_code>;