funcs.h 276 B

12345678910111213141516171819202122
  1. /**
  2. Function declarations for the cputhrottle program.
  3. */
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6. #include <string.h>
  7. #include "specs.h"
  8. #ifndef _FUNCS_H
  9. #define _FUNCS_H
  10. long
  11. query_file(char* filename);
  12. int
  13. set_value(char* filename, long value);
  14. #endif // _FUNCS_H