17 lines
209 B
C
17 lines
209 B
C
|
#ifndef _PROC_PARSER
|
||
|
#define _PROC_PARSER
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <unistd.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <pwd.h>
|
||
|
|
||
|
struct {
|
||
|
char *cmdline;
|
||
|
char state;
|
||
|
long nice;
|
||
|
} mu_proc;
|
||
|
|
||
|
#endif
|