diff options
Diffstat (limited to 'linux/CGroupUtils.h')
-rw-r--r-- | linux/CGroupUtils.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/linux/CGroupUtils.h b/linux/CGroupUtils.h new file mode 100644 index 0000000..ff13437 --- /dev/null +++ b/linux/CGroupUtils.h @@ -0,0 +1,16 @@ +#ifndef HEADER_CGroupUtils +#define HEADER_CGroupUtils +/* +htop - CGroupUtils.h +(C) 2021 htop dev team +Released under the GNU GPLv2+, see the COPYING file +in the source distribution for its full text. +*/ + +#include <stdbool.h> +#include <stddef.h> + + +char* CGroup_filterName(const char* cgroup); + +#endif /* HEADER_CGroupUtils */ |