readme & .gitignore

This commit is contained in:
Abdellah El Morabit 2025-10-11 10:29:55 +02:00
parent e5d599bd31
commit a016b44858
3 changed files with 39 additions and 0 deletions

View File

@ -1,4 +1,8 @@
<<<<<<< HEAD
# Resources gathering tool # Resources gathering tool
=======
# synf-sys
>>>>>>> 1095ca1 (added the device file)
System information retrieval software for synf. System information retrieval software for synf.
@ -8,3 +12,7 @@ helps users throuble shoot performance issues and do general checkups on devices
The system code is written in C and will be imported in the backend through cgo. The system code is written in C and will be imported in the backend through cgo.
<<<<<<< HEAD
=======
>>>>>>> 1095ca1 (added the device file)

23
source/device.c Normal file
View File

@ -0,0 +1,23 @@
/*
* =====================================================================================
*
* Filename: device.c
*
* Description:
*
* Version: 1.0
* Created: 07/17/25 23:14:35
* Revision: none
* Compiler: gcc
*
* Author: YOUR NAME (),
* Organization:
*
* =====================================================================================
*/
#include <stdlib.h>
int main() {
return 0;
}

View File

@ -21,9 +21,17 @@
#include <IOKit/IOKitLib.h> #include <IOKit/IOKitLib.h>
#include <CoreFoundation/CoreFoundation.h> #include <CoreFoundation/CoreFoundation.h>
<<<<<<< HEAD:source/lib/linux/disk.c
typedef struct { typedef struct {
long size; long size;
=======
void disk_size();
typedef struct {
long total_disk_size;
>>>>>>> 1095ca1 (added the device file):source/disk.c
} disk; } disk;