mirror of
https://github.com/xzeldon/htop.git
synced 2025-03-01 06:13:24 +03:00
11 lines
217 B
C
11 lines
217 B
C
#ifndef HEADER_ZramStats
|
|
#define HEADER_ZramStats
|
|
|
|
typedef struct ZramStats_ {
|
|
unsigned long long int totalZram;
|
|
unsigned long long int usedZramComp;
|
|
unsigned long long int usedZramOrig;
|
|
} ZramStats;
|
|
|
|
#endif
|