diff options
| author | Sam Light <sam@lightscale.co.uk> | 2025-09-10 19:37:28 +0100 |
|---|---|---|
| committer | Sam Light <sam@lightscale.co.uk> | 2025-09-10 19:37:28 +0100 |
| commit | 4d3e462531d2172cb13319c7f79c0e2228e652fa (patch) | |
| tree | 6381426e806b30814890e74085afef17e3ee78f3 /src/modules/cpu.h | |
| parent | b74a383e6ded85c122f98137936d78f768f8f938 (diff) | |
Big update
Diffstat (limited to 'src/modules/cpu.h')
| -rw-r--r-- | src/modules/cpu.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/modules/cpu.h b/src/modules/cpu.h new file mode 100644 index 0000000..fab2adb --- /dev/null +++ b/src/modules/cpu.h @@ -0,0 +1,10 @@ +#ifndef _DWXINFO_MODULES_CPU_H_ +#define _DWXINFO_MODULES_CPU_H_ + +struct cpu * cpu_new(); +void cpu_free(struct cpu *); + +void cpu_update(struct cpu *); +const char * cpu_get_val(struct cpu *); + +#endif |
