00001 #ifndef _MQINT_LIST_H_ 00002 #define _MQINT_LIST_H_ 00003 00004 /* Copyright (c) Kyriacos Leptos and the President and Fellows of Harvard University 00005 Release Date: 2004-11-01 00006 Part of the MapQuant suite library "mqbasic.lib" 00007 */ 00008 00021 struct MQIntLink 00022 { 00023 int value; 00024 struct MQIntLink* next; 00025 }; 00026 00027 typedef struct MQIntLink MQIntLink; 00028 00029 typedef MQIntLink* MQIntList; 00030 00031 MQIntList MQIntList_push(MQIntList q, int x); 00032 void MQIntList_show(MQIntList q); 00033 00034 #endif 00035