/* * Do not modify this file */ #ifndef PA04_H #define PA04_H #define MAXLENGTH 100 #define TRUE 1 #define FALSE 0 void partitionAll(int value); void partitionIncreasing(int value); void partitionDecreasing(int value); void partitionOdd(int value); void partitionEven(int value); void partitionOddAndEven(int value); void partitionPrime(int value); #endif