Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 349 Bytes

ReadMe.md

File metadata and controls

20 lines (16 loc) · 349 Bytes

System Information

C-library, that provide CPU, RAM and HDD information.

Example

In one .cpp/.c file add :

#define SYSTEM_INFORMATION_IMPLEMENTATION
#include "SystemInformation.h"

Then you can use it :

struct SystemInformation information;
if (!getSystemInformation(&information))
{
    //  something went wrong.
}