#ifndef __MYHELPER_H__
#define __MYHELPER_H__

namespace MyCustomHelper {

// Return value that indicates lookup_value was not found.
const int NOT_FOUND = -1;
int find(int array[], int size, int lookup_value);

}  // namespace MyCustomHelper

#endif  // __MYHELPER_H__
