1
0
mirror of https://github.com/xzeldon/htop.git synced 2025-03-01 06:13:24 +03:00
2020-10-31 18:51:53 +01:00

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