Main Page | Data Structures | Directories | File List | Globals

mqint.h

Go to the documentation of this file.
00001 #ifndef _MQINT_H_
00002 #define _MQINT_H_
00003 
00004 /* 
00005     Copyright (c) Kyriacos Leptos and the President and Fellows of Harvard University
00006     Release Date: 2005-10-15
00007     Part of the MapQuant suite library "mqbasic.lib" 
00008 */
00009 
00019 extern int    integer_temp;
00020 
00021 #define SWAP(a,b)       {integer_temp=(a);(a)=(b);(b)=integer_temp;}
00022 
00023 int     MQInt_isWithinBounds(int num, int lower, int upper);
00024 int     MQInt_cmp(const void *p1, const void *p2);
00025 void    MQInt_add(const void *sum, const void *p1, const void *p2);
00026 int*    MQInt_new(int d);
00027 char*   MQInt_toString(int i);
00028 char*   MQInt_toFixedWidthString(int i, int width);
00029 char*   MQInt_toFormattedString(int i, char* format);
00030 char*   MQInt_getName(int number);
00031 
00032 #endif
00033 

Generated on Tue Feb 7 03:25:43 2006 for libmqbasic by  doxygen 1.4.4