00001 #ifndef _INT_ARRAY_SEARCH_H_ 00002 #define _INT_ARRAY_SEARCH_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 "massspec.lib" 00007 */ 00008 00009 int IntArray_getIndicesWithinInterval(int *i, int *j, int A[], int start, int stop, int p, int q); 00010 void IntArray_getIndexClosestToValue (int *i, int A[], int start, int stop, int p); 00011 00012 #endif 00013