blob: 98d0d86bad83785d56d5fbb6e49f2a3afcebec76 (
plain)
1 #include <sys/types.h>
2 #include <stdio.h>
3 #include <string.h>
4 #include <stdlib.h>
5
6 #ifndef _config_h
7 #define _config_h
8
9 struct config {
10 pid_t pid;
11 char dead;
12 char live;
13 char sockets;
14 char inodes;
15 char pipes;
16 char showstats;
17 char showsizefd;
18 char showsizelive;
19 char showsizedead;
20 char truncate_dead;
21 };
22
23 int config_from_argv(struct config*, int, char**);
24 #endif
|