pa04.h 358 B

12345678910111213141516
  1. /*
  2. * Do not modify this file
  3. */
  4. #ifndef PA04_H
  5. #define PA04_H
  6. #define MAXLENGTH 100
  7. #define TRUE 1
  8. #define FALSE 0
  9. void partitionAll(int value);
  10. void partitionIncreasing(int value);
  11. void partitionDecreasing(int value);
  12. void partitionOdd(int value);
  13. void partitionEven(int value);
  14. void partitionOddAndEven(int value);
  15. void partitionPrime(int value);
  16. #endif