#ifndef __IBS_H__ #define __IBS_H__ /** * ibs.h * A simple integer binary search. */ /** * Search A for value v, returning the index of v. Returns -1 for * "not found". */ int ibs (int A[], int len, int v); #endif // __IBS_H__