12345678910111213141516171819202122 |
- /**
- Function declarations for the cputhrottle program.
- */
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- #include "specs.h"
- #ifndef _FUNCS_H
- #define _FUNCS_H
- long
- query_file(char* filename);
- int
- set_value(char* filename, long value);
- #endif // _FUNCS_H
|