fixed ps, readlink

This commit is contained in:
Your Name 2024-07-05 19:54:49 +03:00
parent ec99d14ad6
commit 5d24364332
6 changed files with 96 additions and 66 deletions

View file

@ -0,0 +1,16 @@
#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