dockapps/wmmemload/src/mem.h
Doug Torrance ea2cf286ef wmmemload: Consistent formatting.
Format the source so as to minimize warnings from checkpatch.pl in the
Window Maker source tree.
2014-10-10 10:09:53 +01:00

17 lines
337 B
C

/*
* mem.h - module to get memory/swap usages in percent
*
* Copyright (c) 2001 Seiichi SATO <ssato@sh.rim.or.jp>
*
* licensed under the GPL
*/
struct mem_options {
int ignore_buffers;
int ignore_cached;
int ignore_wired;
};
void mem_init(void);
void mem_getusage(int *per_mem, int *per_swap, const struct mem_options *opts);