/* * Do not modify this file */ #ifndef PA01_H #define PA01_H int addElement(int * array, int length); int countNegative(int * array, int length); int isIncreasing(int * array, int length); #endif