summaryrefslogtreecommitdiff
path: root/proc/escape.h
blob: b55c48b6b3f1f433ee4fe73d0e27f9744096dd86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef PROCPS_PROC_ESCAPE_H
#define PROCPS_PROC_ESCAPE_H

#include "readproc.h"

#define ESC_BRACKETS 0x2  // if using cmd, put '[' and ']' around it
#define ESC_DEFUNCT  0x4  // mark zombies with " <defunct>"

int escape_command (unsigned char *outbuf, const proc_t *pp, int bytes, unsigned flags);

int escape_str (unsigned char *dst, const unsigned char *src, int bufsize);

#endif