48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
| #include <stdlib.h>
#include <stdio.h>
#ifndef NO_GETOPT
#include <getopt.h>
#endif
#define BARLEN 35
#define HEADERLEN 14
#define VERSION "0.9.2"
extern char *optarg;
extern int optind, opterr, optopt;
struct freecolor_meminfo {
uint64_t totalram; /* Total usable main memory size */
uint64_t freeram; /* Available memory size */
|
|
| 48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
| #include <stdlib.h>
#include <stdio.h>
#ifndef NO_GETOPT
#include <getopt.h>
#endif
#define BARLEN 35
#define HEADERLEN 14
#define VERSION "0.9.3"
extern char *optarg;
extern int optind, opterr, optopt;
struct freecolor_meminfo {
uint64_t totalram; /* Total usable main memory size */
uint64_t freeram; /* Available memory size */
|