about summary refs log tree commit diff
path: root/csrc/ps.h
blob: 24839f3e8062af9a1a5ad3d4644b9ca414389da9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __PS_H__
#define __PS_H__

typedef enum {
  PS_OK,
  PS_ERR,
} ps_status_t;

void print_process_info(const char *pid);
ps_status_t ps();

#endif