From 0d43215f72f9d0e0b4e9c5ff8b04410bc18c24df Mon Sep 17 00:00:00 2001 From: Abdellah El Morabit Date: Tue, 28 Oct 2025 10:57:03 +0100 Subject: [PATCH] [feature] added the functions of the rest of the features that are yet to be implemented on the linux version --- source/lib.c | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/source/lib.c b/source/lib.c index a52b2a1..aba6f40 100644 --- a/source/lib.c +++ b/source/lib.c @@ -1,4 +1,3 @@ - /* * * Author: nasr @@ -116,7 +115,7 @@ void mem_size() { } -void av_mem_size() { +void mem_av_size() { struct sysinfo info; if (sysinfo(&info) != 0) { @@ -162,11 +161,36 @@ void device_up_time() { } -void device_mdoel() { +void device_model() { return; +} + +void cpu_threads() { + + return; +} + +void get_total() { + + +} + +void get_usage() { + + +} + +void device_os_version() { + + +} + +void device_model() { + + } #endif